Merge pull request #687 from kennethreitz/windows-tests

Windows tests
This commit is contained in:
2017-09-25 10:10:43 -04:00
committed by GitHub
3 changed files with 25 additions and 8 deletions
+3 -2
View File
@@ -4,9 +4,10 @@ python:
- "3.4"
- "3.5"
- "3.6"
# - "3.7-dev"
# - "pypy"
- "pypy"
- "3.7-dev"
# - "pypy3" # TODO: pkg_config issues
# - "3.7-dev"
# command to install dependencies
install:
+1 -5
View File
@@ -7,8 +7,4 @@ sphinx = "<=1.5.5"
"-e ." = "*"
twine = "*"
"sphinx-click" = "*"
"pytest-xdist" = {version = "*", os_name = "=='posix'"}
[requires]
python_version = "3.6"
"pytest-xdist" = "*"
+21 -1
View File
@@ -15,21 +15,41 @@ environment:
PYTHON_ARCH: "64"
TOXENV: "py27"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
TOXENV: "py27"
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"
TOXENV: "py34"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "32"
TOXENV: "py34"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
TOXENV: "py35"
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
TOXENV: "py35"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
TOXENV: "py36"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
TOXENV: "py36"
install:
# Install Python (from the official .msi of http://python.org) and pip when
# not already installed.
@@ -52,4 +72,4 @@ install:
- "pipenv install --system --dev --skip-lock"
test_script:
- "pytest tests/test_pipenv.py tests/test_project.py tests/test_utils.py"
- "pipenv run pytest -n 8 tests/test_pipenv.py tests/test_project.py tests/test_utils.py"