diff options
author | Benawi Adha <benawiadha@gmail.com> | 2022-10-03 06:41:08 +0700 |
---|---|---|
committer | Benawi Adha <benawiadha@gmail.com> | 2022-10-03 06:41:08 +0700 |
commit | 7a797d3673a7ddbd6412939313e3cdf2d15ed542 (patch) | |
tree | ef6d97dcee7f168fe64c42b93439d533144a6f85 | |
parent | 9c8891cb5145eb84c226f65b85b055d87b3967e7 (diff) | |
download | epy-7a797d3673a7ddbd6412939313e3cdf2d15ed542.tar.gz |
Update tests and Makefile
-rw-r--r-- | .github/workflows/tests.yml | 6 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ee508c9..7d499ce 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,10 +19,10 @@ jobs: with: python-version: "3.x" - uses: abatilo/actions-poetry@v2.0.0 - - name: Install dev dependencies - run: poetry install --no-root + - name: Install Project + run: poetry install - name: Run tests run: | - poetry run coverage run --include=epy.py -m pytest -vv tests + poetry run coverage run -m pytest -vv tests poetry run coverage report @@ -18,7 +18,7 @@ tests: python -m pytest -vv coverage: - coverage run --include=epy.py -m pytest -vv tests + coverage run -m pytest -vv tests coverage html python -m http.server -d htmlcov |