##// END OF EJS Templates
CI: Remove noop %CMD_IN_ENV% usage
Nikita Kniazev -
Show More
@@ -1,34 +1,34 b''
1 1 build: false
2 2 matrix:
3 3 fast_finish: true # immediately finish build once one of the jobs fails.
4 4
5 5 environment:
6 6 matrix:
7 7
8 8 - PYTHON: "C:\\Python37-x64"
9 9 PYTHON_VERSION: "3.7.x"
10 10 PYTHON_ARCH: "64"
11 11
12 12 - PYTHON: "C:\\Python38"
13 13 PYTHON_VERSION: "3.8.x"
14 14 PYTHON_ARCH: "32"
15 15
16 16 - PYTHON: "C:\\Python38-x64"
17 17 PYTHON_VERSION: "3.8.x"
18 18 PYTHON_ARCH: "64"
19 19
20 20 init:
21 21 - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
22 22
23 23 install:
24 24 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
25 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
26 - "%CMD_IN_ENV% pip install nose coverage pytest"
27 - "%CMD_IN_ENV% pip install .[test]"
28 - "%CMD_IN_ENV% mkdir results"
29 - "%CMD_IN_ENV% cd results"
25 - python -m pip install --upgrade setuptools pip
26 - pip install nose coverage pytest
27 - pip install .[test]
28 - mkdir results
29 - cd results
30 30 test_script:
31 - "%CMD_IN_ENV% iptest --coverage xml"
31 - iptest --coverage xml
32 32 on_finish:
33 33 - pip install codecov
34 34 - codecov -e PYTHON_VERSION PYTHON_ARCH
General Comments 0
You need to be logged in to leave comments. Login now