1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-14 22:25:45 +01:00

Run tests via pytest

This commit is contained in:
2019-11-11 17:39:29 +01:00
parent fc46096cf2
commit dc87d022d1
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,6 @@ setup(author="Roman Dobosz, Szymon Datko",
keywords='ferrit', keywords='ferrit',
name='ferrit', name='ferrit',
packages=find_packages(include=['ferrit', 'ferrit.*']), packages=find_packages(include=['ferrit', 'ferrit.*']),
test_suite='tests',
url='https://github.com/gryf/ferrit', url='https://github.com/gryf/ferrit',
version='0.0.1', version='0.0.1',
zip_safe=False) zip_safe=False)

View File

@@ -4,7 +4,8 @@ envlist = py36,py37,flake8
[testenv] [testenv]
usedevelop=True usedevelop=True
deps = requests deps = requests
commands = python setup.py test pytest
commands = pytest
[testenv:flake8] [testenv:flake8]
basepython = python3 basepython = python3