From 2452ed56e8a869493bf8ea727c6e98bcb56e0209 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 24 Dec 2022 21:18:09 +0200 Subject: [PATCH] Fix pytest usage https://github.com/romanz/amodem/commit/0c5ba9480b310d9de7794a6ec62e409a3e94625f#r93932858 --- .github/workflows/build.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c9add0..776bdf1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,4 +33,4 @@ jobs: - name: Test with pytest run: | - py.test -v --cov=amodem + pytest -v --cov=amodem diff --git a/tox.ini b/tox.ini index c6661ad..d7f2f4e 100644 --- a/tox.ini +++ b/tox.ini @@ -10,5 +10,5 @@ deps= commands= pycodestyle amodem/ scripts/ pylint --extension-pkg-whitelist=numpy --reports=no amodem --rcfile .pylintrc - coverage run --source amodem/ --omit="*/__main__.py" -m py.test -v + coverage run --source amodem/ --omit="*/__main__.py" -m pytest -v coverage report