-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
40f2548
commit 587275f
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -65,17 +65,17 @@ jobs: | |
run: | | ||
export PYTHONPATH=$(pwd) | ||
python -m pip install --upgrade pip | ||
pip install flake8 pytest pytest-cov | ||
#pip install flake8 pytest pytest-cov | ||
python setup.py install | ||
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
pytest -s --cache-clear --cov=app horizon/tests/ > pytest-coverage.txt | ||
- name: Comment coverage | ||
uses: coroo/[email protected] | ||
with: | ||
pytest-coverage: pytest-coverage.txt | ||
#pytest -s --cache-clear --cov=app horizon/tests/ > pytest-coverage.txt | ||
pytest -s --cache-clear horizon/tests/ | ||
# - name: Comment coverage | ||
# uses: coroo/[email protected] | ||
# with: | ||
# pytest-coverage: pytest-coverage.txt | ||
|
||
# build-and-push-pdp-vanilla: | ||
# needs: pdp-tests | ||
|