Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Stop using deprecated 'python setup.py test'
Using `python setup.py test` is now deprecated [1], users are encouraged to be explicit about the test command. Running yamllint tests using the Python standard library (`unittest`) can be done using: python -m unittest discover Why not nose, tox or pytest? Because they would add a dependency, make tests running more complicated and verbose for new users, and their benefit is not worth for this simple projects (only 2 runtime dependencies: PyYAML and pathspec). [1]: pypa/setuptools#1878
- Loading branch information