Skip to content

Commit

Permalink
appveyor pytest keeps failing due to wrong python
Browse files Browse the repository at this point in the history
so why not testing segmentator with python 3...
  • Loading branch information
ofgulban committed Jan 11, 2018
1 parent 780fcd4 commit 4789318
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build: false

environment:
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda

init:
Expand All @@ -12,9 +12,9 @@ install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- "conda env create --force -f environment.yml python=2.7"
- "conda env create --force -f environment.yml python=3.6"
- activate segmentator
- python setup.py develop
- python setup.py install

test_script:
- python -m pytest
- py.test

0 comments on commit 4789318

Please sign in to comment.