Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Processing the input directories.
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-weinmann committed Feb 1, 2022
1 parent 5ea62e5 commit 6cc9879
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,7 @@ jobs:
- name: Compile the Python code
run: make compileall
- name: Run pytest for writing better program
run: |
pipenv install pytest
pipenv run pytest --version
pipenv run pytest --dead-fixtures tests
pipenv run pytest --cov=src --cov-report term-missing:skip-covered tests
make pytest
run: make pytest_prod

test_framework:
name: OS ${{ matrix.os }} - Python ${{ matrix.python-version }} - Test Framework
Expand Down
10 changes: 10 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,13 @@ pytest_issue:
pipenv run pytest --version
pipenv run pytest --cov=src --cov-report term-missing:skip-covered -m issue --setup-show tests
@echo "Info ********** End: pytest **************************************"
pytest_prod:
@echo "Info ********** Start: pytest **************************************"
pipenv install pytest
pipenv install pytest-cov
pipenv install pytest-deadfixtures
pipenv install pytest-random-order
pipenv run pytest --version
pipenv run pytest --dead-fixtures tests
pipenv run pytest --cov=src --cov-report term-missing:skip-covered --random-order tests
@echo "Info ********** End: pytest **************************************"

0 comments on commit 6cc9879

Please sign in to comment.