Skip to content

Commit

Permalink
revert test order - utils first
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmedGIT committed Mar 6, 2024
1 parent a5fdc4d commit c77ee71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,12 @@ jobs:
run: docker compose -f ./docker-compose.yml --env-file ${{ env.ENV_FILE }} up -d operandi-mongodb

- name: wait starting of RabbitMQ and MongoDB
run: sleep 25
run: sleep 60

- name: run utils tests
run: |
export $(shell sed 's/=.*//' ${{ env.ENV_FILE }})
pytest tests/tests_utils/test_*.py
- name: run broker tests
run: |
Expand All @@ -138,11 +143,6 @@ jobs:
export $(shell sed 's/=.*//' ${{ env.ENV_FILE }})
pytest tests/tests_harvester/test_*.py
- name: run utils tests
run: |
export $(shell sed 's/=.*//' ${{ env.ENV_FILE }})
pytest tests/tests_utils/test_*.py
- name: run integration tests
run: |
export $(shell sed 's/=.*//' ${{ env.ENV_FILE }})
Expand Down

0 comments on commit c77ee71

Please sign in to comment.