Skip to content

Commit 500b4cc

Browse files
authored
Build gitless as a separate step
wheel is also installed by default
1 parent f755920 commit 500b4cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ environment:
88

99
init:
1010
- cmd: '%PYTHON% -m pip install -U pip'
11-
- cmd: '%PYTHON% -m pip install -U nose wheel'
11+
- cmd: '%PYTHON% -m pip install -U nose'
1212

13-
build: off
13+
build:
14+
# build and install `gl` binary (end to end test also use it)
15+
- cmd: '%PYTHON% -m pip install -r requirements.txt .'
1416

1517
before_test:
1618
- cmd: git config --global user.name "appveyor-test"
@@ -19,8 +21,6 @@ before_test:
1921
test_script:
2022
- cmd: gl
2123
- ps: |
22-
# e2e tests require `gl` binary
23-
&$env:PYTHON -m pip install -r requirements.txt .
2424
# 'gl' is installed in Python Scripts directory
2525
$env:PATH += ";$(Split-Path $env:PYTHON)\Scripts"
2626
&$env:PYTHON setup.py nosetests --logging-level=WARN --with-xunit

0 commit comments

Comments
 (0)