Skip to content

Commit

Permalink
Move annoying params from pytest to Makefile/appveyor conf (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jan 14, 2018
1 parent 8762fe2 commit 25430ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build_script:
- "tools/build.cmd %PYTHON%\\python.exe setup.py sdist bdist_wheel"

test_script:
- "tools/build.cmd %PYTHON%\\python.exe -m pytest"
- "tools/build.cmd %PYTHON%\\python.exe -m pytest tests --junitxml=junit-test-results.xml --cov-report term-missing:skip-covered --cov-report xml"

after_test:
- "tools/build.cmd %PYTHON%\\python.exe -m codecov -f coverage.xml -X gcov"
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install:
- pip install -r requirements/ci.txt

script:
- pytest
- make test

after_success:
- codecov
Expand Down
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[pytest]
norecursedirs=dist build .tox docs requirements tools
addopts=-v -rxs --doctest-modules --junitxml=junit-test-results.xml --cov=multidict --cov-report term-missing:skip-covered --cov-report xml tests
addopts=--doctest-modules --cov=multidict
doctest_optionflags=ALLOW_UNICODE ELLIPSIS

0 comments on commit 25430ee

Please sign in to comment.