kytos-ng / pathfinder

Kytos main path finder Network Application (NApp)
https://kytos-ng.github.io/api/pathfinder.html
MIT License
0 stars 7 forks source link

Updated tox.ini and removed `tests_require` and `setup_requires` #22

Closed viniarck closed 2 years ago

viniarck commented 2 years ago

Description of the change

This change should also make the tests compatible with scrutinizer, it seemed that setup_requires and tests_require weren't fully supported anymore in a particular testing stage.

Examples how to use the --k option

tox

tox -e coverage -- --k test_update_topology_success_case
tox -e coverage -- --k 'unit and filter'

Running without tox

Tox calls the underlying python setup.py commands, so if you manage your own venvs you can also run it directly:

python setup.py test --k test_update_topology_success_case 
python setup.py test --k 'unit and filter'
viniarck commented 2 years ago

Thanks for reviewing guys