Skip to content

Commit 330ccb3

Browse files
committed
Simplify appveyor configuration and add python 3
1 parent c5783f1 commit 330ccb3

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

appveyor.yml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
1-
build: false
2-
31
environment:
42
matrix:
5-
- PYTHON_VERSION: 2.7
6-
MINICONDA: C:\Miniconda-x64
3+
- PYTHON: "C:\\Python27"
4+
- PYTHON: "C:\\Python36"
75

8-
init:
9-
- "ECHO %PYTHON_VERSION% %MINICONDA%"
6+
build_script:
7+
- '%PYTHON%\python.exe -m pip install .'
108

11-
install:
12-
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
13-
- conda config --set always_yes yes --set changeps1 no
14-
- conda update -q conda
15-
- conda info -a
16-
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy networkx requests pandas pyqt -c conda-forge -c bioconda"
17-
- activate test-environment
18-
- python setup.py install
9+
before_test:
10+
- '%PYTHON%\python.exe -m pip install coverage green'
1911

2012
test_script:
21-
- beams --help
22-
- python setup.py test
13+
- '%PYTHON%\python.exe -m green -vvv --run-coverage'

0 commit comments

Comments
 (0)