-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
575 additions
and
556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ VALID_TOKENS=CHANGEME | |
GIT_CRYPT_KEY_PATH=CHANGEME | ||
|
||
[email protected]:blindern/drift.git | ||
|
||
SERVICES_FILE=tests/services.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,25 +17,25 @@ authors = ["Henrik Steen <[email protected]>"] | |
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
python = "^3.12" | ||
|
||
ansible = "6.0" | ||
Flask = "2.2.2" | ||
Flask-Injector = "0.14.0" | ||
gunicorn = "20.1.0" | ||
injector = "0.20.1" | ||
ansible = "9.4.0" | ||
Flask = "3.0.2" | ||
Flask-Injector = "0.15.0" | ||
gunicorn = "21.2.0" | ||
injector = "0.21.0" | ||
NamedAtomicLock = "1.1.3" | ||
pydantic = "1.10.4" | ||
python-dotenv = "0.21.1" | ||
pydantic = "2.6.4" | ||
python-dotenv = "1.0.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
autoflake = "1.7.8" | ||
black = "22.12.0" | ||
flake8 = "4.0.1" | ||
isort = "5.12.0" | ||
mypy = "0.982" | ||
pre-commit = "2.21.0" | ||
pytest = "7.2.1" | ||
autoflake = "2.3.1" | ||
black = "24.3.0" | ||
flake8 = "7.0.0" | ||
isort = "5.13.2" | ||
mypy = "1.9.0" | ||
pre-commit = "3.7.0" | ||
pytest = "8.1.1" | ||
|
||
[build-system] | ||
requires = ["poetry_core>=1.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,4 +57,4 @@ def test_ansible( | |
}, | ||
) | ||
|
||
assert mock_push_changes.assert_called_once | ||
mock_push_changes.assert_called_once() |