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 d58d8aa commit fec96cdCopy full SHA for fec96cd
Makefile
@@ -2,17 +2,14 @@
2
init:
3
python -m pip install -r requirements-dev.txt
4
test:
5
- # This runs all of the tests on all supported Python versions.
6
- tox -p
+ python -m pytest tests
+
7
ci:
8
python -m pytest tests --junitxml=report.xml
9
10
test-readme:
11
python setup.py check --restructuredtext --strict && ([ $$? -eq 0 ] && echo "README.rst and HISTORY.rst ok") || echo "Invalid markup in README.rst or HISTORY.rst!"
12
13
-flake8:
14
- python -m flake8 src/requests
15
-
16
coverage:
17
python -m pytest --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=src/requests tests
18
0 commit comments