Test fixes?

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-04-08 11:42:22 -04:00
parent 3b4653d6cc
commit 5afe66c08c
3 changed files with 11 additions and 4 deletions
+2 -1
View File
@@ -23,6 +23,7 @@ env:
# command to install dependencies
install:
- 'export CACHE_NAME="$TRAVIS_PYTHON_VERSION-$CACHE_NAME"'
- "git config --global core.sharedRepository true"
- "pip install --upgrade pip"
- "pip install -e . --upgrade --upgrade-strategy=only-if-needed"
@@ -35,7 +36,7 @@ script:
- "pip install --upgrade -e ."
- "pipenv run pip install -e ."
- "pipenv install --dev"
- 'echo "Running Tests: $TEST_SUITE"'
- 'echo Running Tests: "$TEST_SUITE"'
- 'pipenv run pytest -n auto -v -m "$TEST_SUITE" --ignore="pipenv/vendor" --ignore="pipenv/patched"'
jobs:
Generated
+6
View File
@@ -261,6 +261,12 @@
],
"version": "==4.1.0"
},
"ordereddict": {
"hashes": [
"sha256:1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f"
],
"version": "==1.1"
},
"pathlib2": {
"hashes": [
"sha256:24e0b33e1333b55e73c9d1e9a8342417d519f7789a9d3b440f4acd00ea45157e",
+3 -3
View File
@@ -22,9 +22,9 @@ required = [
'setuptools>=36.2.1',
'virtualenv-clone>=0.2.5',
'virtualenv',
'pathlib2==2.1.0; python_version<"3.4"',
'requests[security]; python_version<"3.0"',
'ordereddict; python_version<"3.0"',
'pathlib2==2.1.0;python_version<"3.4"',
'requests[security];python_version<"3.0"',
'ordereddict;python_version<"3.0"',
]