Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "tests/engine_tests/engine-test-data"]
path = tests/engine_tests/engine-test-data
url = https://github.com/flagsmith/engine-test-data.git
tag = v3.6.0
branch = v3.6.0
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.PHONY: sync-engine-test-data

sync-engine-test-data:
cd tests/engine_tests/engine-test-data && git fetch --tags && git checkout $$(git config -f ../../../.gitmodules submodule.tests/engine_tests/engine-test-data.branch)
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ source .venv/bin/activate
python -m pip install -r requirements-dev.txt
```

## Syncing engine-test-data

The engine-test-data submodule is pinned to a specific tag. To sync it locally:

```bash
make sync-engine-test-data
```

## Design

- Marshmallow Schemas
Expand Down
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"git-submodules": {
"enabled": true
},
Comment thread
khvn26 marked this conversation as resolved.
"pip-compile": {
"enabled": true,
"fileMatch": ["requirements\\.in$", "requirements-dev\\.in$"]
}
}
Loading