Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ matrix:
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: "nightly"
env: PRE=--pre
allow_failures:
Expand Down
22 changes: 7 additions & 15 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,22 @@ environment:
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\appveyor\\run_with_env.cmd"

matrix:
- PYTHON: "C:\\Python27_32"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python34_32"
PYTHON_VERSION: "3.4.3"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python34_64"
PYTHON_VERSION: "3.4.3"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.0"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.0"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python36-x64"
PYTHON_ARCH: "64"
PYTHON_VERSION: "3.6"

install:
# Install Python (from the official .msi of https://python.org) and pip when
# not already installed.
Expand All @@ -44,10 +36,10 @@ install:
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""

# Install the build and runtime dependencies of the project.
- "%CMD_IN_ENV% pip install -v six nose pytest pytest-cov coverage"
- "%CMD_IN_ENV% pip install six nose pytest pytest-cov coverage setuptools"

# Install the generated wheel package to test it
- "python setup.py install"
- "%CMD_IN_ENV% pip install -v ."


# Not a .NET project, we build scikit-image in the install step instead
Expand All @@ -56,7 +48,7 @@ build: false
test_script:

# Run unit tests with nose
- "python run_tests.py"
- "%CMD_IN_ENV% python run_tests.py"

artifacts:
# Archive the generated wheel package in the ci.appveyor.com build report.
Expand Down