Skip to content

Commit 60afa4f

Browse files
refactor: Add coverage to dependencies and clean up CI
This commit moves the `coverage` package into the main production dependencies to ensure it is always available in the application environment. Key changes: **`requirements/prod.txt`:** Added `coverage` to the list of production requirements. - **`ci.yml`:** Removed the temporary debugging step that printed the `.env` file contents, as it is no longer needed.
1 parent 96c12d1 commit 60afa4f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ jobs:
5353
echo "ANTIFRAUD_INTERNAL_PORT=8081" >> .env
5454
echo "ANTIFRAUD_EXTERNAL_PORT=8081" >> .env
5555
echo "ANTIFRAUD_CACHE_MS=1000" >> .env
56-
- name: Debug .env file
57-
run: cat .env
5856
5957
- name: Build and run Docker containers
6058
run: docker compose up -d --build

requirements/prod.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ pycountry==24.6.1
99
python-dotenv==1.0.1
1010
requests==2.32.4
1111
parameterized==0.9.0
12+
coverage==7.9.2

0 commit comments

Comments
 (0)