diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:17:13 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:17:13 -0400 |
commit | 6571ce8b2152c0c6e1e7012fe07970e96484a1a7 (patch) | |
tree | 199c48fa2cd95c5c72be4a2fb4bd94abf280ee78 | |
parent | 0e4c33da98882fee354d21082103392b26af3615 (diff) | |
download | external_python_setuptools-6571ce8b2152c0c6e1e7012fe07970e96484a1a7.tar.gz external_python_setuptools-6571ce8b2152c0c6e1e7012fe07970e96484a1a7.tar.bz2 external_python_setuptools-6571ce8b2152c0c6e1e7012fe07970e96484a1a7.zip |
Report skips and xfails on CI builds
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | appveyor.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index e91f7e78..32b664d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ script: # update egg_info based on setup.py in checkout - python bootstrap.py - - python setup.py test --addopts='-rs' + - python setup.py test --addopts='-rsx' before_deploy: - export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=1 diff --git a/appveyor.yml b/appveyor.yml index f3d22f09..ebf446bf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,4 +14,4 @@ build: off test_script: - "python bootstrap.py" - - "python setup.py test" + - "python setup.py test --addopts='-rsx'" |