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
4 changes: 2 additions & 2 deletions .github/workflows/dashboard-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
with:
environment: ${{ inputs.environment }}
is_deployment: ${{ github.ref == 'refs/heads/main' }}
terraform_stack: gp2gp-dashboard
terraform_stack: gp2gp_dashboard
image_tag: gp2gp_dashboard
build_lambda: true
git_ref: ${{ github.ref }}
Expand All @@ -106,6 +106,6 @@ jobs:
with:
environment: ${{ inputs.environment }}
is_deployment: ${{ github.ref == 'refs/heads/main' }}
terraform_stack: step-function
terraform_stack: step_function
git_ref: ${{ github.ref }}
secrets: inherit
20 changes: 10 additions & 10 deletions services/metrics-calculator/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ name = "pypi"
gp2gp-metrics-calculator = {editable = true, path = "."}

[dev-packages]
black = "==25.11.0"
bandit = "~=1.9.2"
black = "==26.1.0"
bandit = "~=1.9.3"
isort = "~=7.0.0"
mypy = "~=1.19.0"
mypy = "~=1.19.1"
types-python-dateutil = "~=2.9"
types-freezegun = "~=1.1"
pytest-datadir = "~=1.3"
moto = {version = "~=5.1.18", extras = ["server"]}
types-freezegun = "~=1.1.10"
pytest-datadir = "~=1.8.0"
moto = {version = "~=5.1.20", extras = ["server"]}
freezegun = "~=1.5.5"
pytest-cov = "~=7.0.0"
pytest = "~=9.0.1"
pytest = "~=9.0.2"
boto3-stubs = {extras = ["s3"], version = "1.42.3"}
pytz = "~=2025.2"
urllib3 = "==2.6.0"
urllib3 = "==2.6.3"

[requires]
python_version = "3.14"
Expand All @@ -29,7 +29,7 @@ python_version = "3.14"
test = "pytest --cov=prmcalculator --cov-report=term-missing tests/unit tests/integration tests/e2e"
e2etest-verbose = "pytest -p no:logging -rA tests/e2e"
format-import = "isort src/ tests/ setup.py"
format = "black -t py39 -l100 src/ tests/ setup.py"
check-format = "black --check -t py39 -l100 src/ tests/ setup.py"
format = "black -t py314 -l100 src/ tests/ setup.py"
check-format = "black --check -t py314 -l100 src/ tests/ setup.py"
typecheck = "mypy src/ tests/"
lint-bandit = "bandit -r src/"
567 changes: 312 additions & 255 deletions services/metrics-calculator/Pipfile.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def calculate_national_metrics_data(
) -> NationalMetricsPresentation:
observability_probe.record_calculating_national_metrics(reporting_window)
metric_month_transfers = filter_transfers_by_date_requested(transfers, reporting_window)
(year, month) = reporting_window.last_metric_month
year, month = reporting_window.last_metric_month
national_metrics = NationalMetricsMonth(
transfers=metric_month_transfers,
year=year,
Expand Down
14 changes: 7 additions & 7 deletions services/ods-downloader/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ name = "pypi"
gp2gp-ods-downloader = {editable = true, path = "."}

[dev-packages]
black = "==25.11.0"
bandit = "~=1.9.2"
black = "==26.1.0"
bandit = "~=1.9.3"
isort = "~=7.0.0"
mypy = "~=1.19.0"
types-requests = "*"
types-python-dateutil = "*"
types-freezegun = "*"
moto = {version = "~=5.1.18", extras = ["server"]}
moto = {version = "~=5.1.20", extras = ["server"]}
freezegun = "~=1.5.5"
pytest-cov = "~=7.0.0"
pytest = "~=9.0.1"
urllib3 = "==2.6.0"
pytest = "~=9.0.2"
urllib3 = "==2.6.3"

[requires]
python_version = "3.14"
Expand All @@ -27,7 +27,7 @@ python_version = "3.14"
test = "pytest --cov=prmods --cov-report=term-missing tests/unit tests/e2e"
e2etest-verbose = "pytest -p no:logging -rA tests/e2e"
format-import = "isort src/ tests/ setup.py"
format = "black -t py38 -l100 src/ tests/ setup.py"
check-format = "black --check -t py38 -l100 src/ tests/ setup.py"
format = "black -t py314 -l100 src/ tests/ setup.py"
check-format = "black --check -t py314 -l100 src/ tests/ setup.py"
typecheck = "mypy src/ tests/"
lint-bandit = "bandit -r src/"
555 changes: 306 additions & 249 deletions services/ods-downloader/Pipfile.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions services/reports-generator/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ gp2gp-reports-generator = {editable = true, path = "."}
polars = "~=0.20.31"

[dev-packages]
black = "==25.11.0"
bandit = "~=1.9.2"
black = "==26.1.0"
bandit = "~=1.9.3"
isort = "~=7.0.0"
mypy = "~=1.19.0"
mypy = "~=1.19.1"
types-python-dateutil = "~=2.9"
pytest-datadir = "~=1.3"
pytest-datadir = "~=1.8.0"
pytest-cov = "~=7.0.0"
moto = {version = "~=5.1.18", extras = ["server"]}
pytest = "~=9.0.1"
types-freezegun = "~=1.1"
moto = {version = "~=5.1.20", extras = ["server"]}
pytest = "~=9.0.2"
types-freezegun = "~=1.1.10"
freezegun = "~=1.5.5"
boto3-stubs = {extras = ["s3"], version = "1.42.3"}
urllib3 = "==2.6.0"
urllib3 = "==2.6.3"

[requires]
python_version = "3.14"

[scripts]
test = "pytest --cov=prmreportsgenerator --cov-report=term-missing tests/unit tests/e2e"
format-import = "isort src/ tests/ setup.py"
format = "black -t py39 -l100 src/ tests/ setup.py"
check-format = "black --check -t py39 -l100 src/ tests/ setup.py"
format = "black -t py314 -l100 src/ tests/ setup.py"
check-format = "black --check -t py314 -l100 src/ tests/ setup.py"
typecheck = "mypy --strict --no-warn-unused-ignores src/ tests/"
lint-bandit = "bandit -r src/"
Loading
Loading