File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,16 @@ build: off
15
15
install :
16
16
# To run Nodejs workflow integ tests
17
17
- 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
26
27
27
28
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
You can’t perform that action at this time.
0 commit comments