Skip to content

Commit

Permalink
Fixed runtests.yaml to use new tests folder when testing the distribu…
Browse files Browse the repository at this point in the history
…tion.
  • Loading branch information
johnbywater committed Nov 7, 2024
1 parent 242f9c2 commit c941e34
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/runtests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,10 @@ jobs:
make build
find ./dist -type f -name '*.whl' -exec pip install '{}[postgres]' \;
rm -r dist
mv eventsourcing/tests eventsourcing_tests
rm -r eventsourcing
find eventsourcing_tests -type f -exec sed -i -e 's/eventsourcing.tests/eventsourcing_tests/g' {} \;
python -m unittest -v eventsourcing_tests/domain_tests/test_aggregate.py
python -m unittest -v eventsourcing_tests/application_tests/test_application_with_popo.py
python -m unittest -v eventsourcing_tests/application_tests/test_processapplication.py
python -m unittest -v tests/domain_tests/test_aggregate.py
python -m unittest -v tests/application_tests/test_application_with_popo.py
python -m unittest -v tests/application_tests/test_processapplication.py
python -c "import eventsourcing.postgres"
# coveralls_finish:
Expand Down

0 comments on commit c941e34

Please sign in to comment.