Skip to content

Commit 52080e9

Browse files
committed
chore: modify appveyor build
1 parent e3e8a64 commit 52080e9

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.appveyor.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ build: off
1515
install:
1616
# To run Nodejs workflow integ tests
1717
- ps: Install-Product node 8.10
18-
19-
- "set PATH=%PYTHON%\\Scripts;%PYTHON%\\bin;%PATH%"
20-
- "%PYTHON%\\python.exe -m pip install -r requirements/dev.txt"
21-
- "%PYTHON%\\python.exe -m pip install -e ."
22-
- "python --version"
23-
- "set PATH=C:\\Ruby25-x64\\bin;%PATH%"
24-
- "gem install bundler --no-ri --no-rdoc"
25-
- "bundler --version"
18+
- ps: $env:Path = "$env:PYTHON;$env:Path"
19+
- ps: python --version
20+
- ps: python -m pip install -r requirements/dev.txt
21+
- ps: python -m pip install -e .
22+
- ps: python --version
23+
- ps: $env:Path = "C:\\Ruby25-x64\\bin;$env:Path"
24+
- ps: ruby --version
25+
- ps: gem install bundler --no-ri --no-rdoc
26+
- ps: bundler --version
2627

2728
test_script:
28-
- "%PYTHON%\\python.exe -m pytest --cov aws_lambda_builders --cov-report term-missing tests/unit tests/functional"
29-
- "%PYTHON%\\python.exe -m pytest tests/integration"
29+
- ps: python -m pytest --cov aws_lambda_builders --cov-report term-missing tests/unit tests/functional
30+
- ps: python -m pytest tests/integration

0 commit comments

Comments
 (0)