-
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
1 changed file
with
7 additions
and
2 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 |
---|---|---|
|
@@ -57,12 +57,17 @@ jobs: | |
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: 7.0.8 | ||
- name: Install dependencies and check code | ||
- name: Install dependencies | ||
run: | | ||
poetry env use '3.10' | ||
source .venv/bin/activate | ||
poetry install --with docs,test | ||
coverage run -m pytest florist/tests/integration && coverage xml && coverage report -m | ||
- name: Run integration tests | ||
run: | | ||
source .venv/bin/activate | ||
coverage run -m pytest florist/tests/integration | ||
coverage xml | ||
coverage report -m | ||
- name: Upload python coverage to Codecov | ||
uses: Wandalen/[email protected] | ||
with: | ||
|