blob: 68eded11c1e0a17d168b52aa3ce0f8a6775d35a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
environment:
matrix:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
build: off
before_test:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install -r requirements-dev.txt
- pip install -e .
test_script:
- pytest --cov-report= --cov=cli_helpers
- coverage report
- codecov
|