We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f755920 commit 500b4ccCopy full SHA for 500b4cc
1 file changed
.appveyor.yml
@@ -8,9 +8,11 @@ environment:
8
9
init:
10
- cmd: '%PYTHON% -m pip install -U pip'
11
- - cmd: '%PYTHON% -m pip install -U nose wheel'
+ - cmd: '%PYTHON% -m pip install -U nose'
12
13
-build: off
+build:
14
+ # build and install `gl` binary (end to end test also use it)
15
+ - cmd: '%PYTHON% -m pip install -r requirements.txt .'
16
17
before_test:
18
- cmd: git config --global user.name "appveyor-test"
@@ -19,8 +21,6 @@ before_test:
19
21
test_script:
20
22
- cmd: gl
23
- ps: |
- # e2e tests require `gl` binary
- &$env:PYTHON -m pip install -r requirements.txt .
24
# 'gl' is installed in Python Scripts directory
25
$env:PATH += ";$(Split-Path $env:PYTHON)\Scripts"
26
&$env:PYTHON setup.py nosetests --logging-level=WARN --with-xunit
0 commit comments