diff --git a/.appveyor.yml b/.appveyor.yml index 788c18f55..c0a82d8fd 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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" diff --git a/.travis.yml b/.travis.yml index 3577085d6..6ee1058b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ install: - pip install -r requirements/ci.txt script: -- pytest +- make test after_success: - codecov diff --git a/pytest.ini b/pytest.ini index b839e4bbb..bd11287a0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -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