Skip to content

Commit ef776e0

Browse files
committed
Try quoting windows commands
1 parent 301bcc9 commit ef776e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ environment:
33
- PYTHON: "C:\\Python37"
44

55
install:
6-
- %PYTHON%\\python.exe -m pip install --upgrade pip setuptools
7-
- %PYTHON%\\python.exe -m pip install --upgrade --editable .[dev]
6+
- "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools"
7+
- "%PYTHON%\\python.exe -m pip install --upgrade --editable .[dev]"
88
test_script:
9-
- %PYTHON%\\python.exe -m pytest -vvv --exitfirst tests/ --cov-fail-under 100 --cov src --cov tests
9+
- "%PYTHON%\\python.exe -m pytest -vvv --exitfirst tests/ --cov-fail-under 100 --cov src --cov tests"

0 commit comments

Comments
 (0)