diff --git a/Makefile b/Makefile index ddc9598..6f708d4 100644 --- a/Makefile +++ b/Makefile @@ -7,14 +7,14 @@ isort: test: unit integration unit: - @coverage run --branch `which nosetests` -vvvv --with-yanc -s tests/unit/ - @coverage report -m + @-pytest -sv --cov=opencv_engine tests/unit/ + @-coverage report -m coverage-html: unit @coverage html -d cover integration: - @`which nosetests` -vvvv --with-yanc -s tests/integration/ + @pytest -sv tests/integration/ setup: @pip install -U -e .\[tests\] diff --git a/setup.py b/setup.py index 5acb0fc..a975555 100644 --- a/setup.py +++ b/setup.py @@ -9,15 +9,13 @@ "black", "colorama", "colour", - "coverage", - "coveralls", "ipdb", "isort", "mock", - "nose", "numpy", "preggy", - "yanc", + "pytest", + "pytest-cov", ] setup(