We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a439d commit ab8a438Copy full SHA for ab8a438
CONTRIBUTING.rst
@@ -3,15 +3,16 @@ Contributing
3
4
This package uses the pyTest test runner. To run the tests locally simply run::
5
6
- python setup.py test
+ python -m pytest -m "not selenium"
7
8
If you need to the development dependencies installed of you local IDE, you can run::
9
10
- python setup.py develop
+ python -m pip install -e .[test]
11
12
Documentation pull requests welcome. The Sphinx documentation can be compiled via::
13
14
- python setup.py build_sphinx
+ python -m pip install -e .[docs]
15
+ python -m sphinx -W -b doctest -b html docs docs/_build
16
17
Bug reports welcome, even more so if they include a correct patch. Much
18
more so if you start your patch by adding a failing unit test, and correct
0 commit comments