Skip to content

Commit f14e52d

Browse files
authored
Merge pull request #152 from techtonik/patch-1
Fix AppVeyor - add Scripts to path for current Python
2 parents 2153ca1 + 85b3e0c commit f14e52d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ before_test:
3333

3434
test_script:
3535
- ps: |
36+
# e2e tests require `gl` binary
3637
&$env:PYTHON -m pip install .
38+
# 'gl' is installed in Python Scripts directory
39+
$env:PATH += ";$(Split-Path $env:PYTHON)\Scripts"
3740
&$env:PYTHON setup.py nosetests --logging-level=WARN --with-xunit
3841
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
3942
# upload results to AppVeyor

0 commit comments

Comments
 (0)