File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -99,23 +99,23 @@ jobs:
9999 AWS_ACCESS_KEY_ID : ${{ secrets.CI_SCENARIO_RO_AWS_ACCESS_KEY_ID }}
100100 AWS_SECRET_ACCESS_KEY : ${{ secrets.CI_SCENARIO_RO_AWS_SECRET_ACCESS_KEY }}
101101 run : |
102- python3 test/python/markdown_testing/markdown_testing.py $(pwd) --test-root=docs/walkthroughs/readonly 2>&1 | tee cicd/log/markdown-readonly-testing-results.log
102+ python3 test/python/markdown_testing/markdown_testing.py " $(pwd)" --test-root=docs/walkthroughs/readonly 2>&1 | tee cicd/log/markdown-readonly-testing-results.log
103103
104104 - name : Run Read Write Walkthrough Scenarios
105105 if : ${{ env.runType == env.RUNTYPE_READ_WRITE || env.runType == env.RUNTYPE_ALL }}
106106 env :
107107 AWS_ACCESS_KEY_ID : ${{ secrets.CI_SCENARIO_RW_AWS_ACCESS_KEY_ID }}
108108 AWS_SECRET_ACCESS_KEY : ${{ secrets.CI_SCENARIO_RW_AWS_SECRET_ACCESS_KEY }}
109109 run : |
110- python3 test/python/markdown_testing/markdown_testing.py $(pwd) --test-root=docs/walkthroughs/readwrite 2>&1 | tee cicd/log/markdown-readwrite-testing-results.log
110+ python3 test/python/markdown_testing/markdown_testing.py " $(pwd)" --test-root=docs/walkthroughs/readwrite 2>&1 | tee cicd/log/markdown-readwrite-testing-results.log
111111
112112 - name : Run Deploy Walkthrough Scenarios
113113 if : ${{ env.runType == env.RUNTYPE_DEPLOY || env.runType == env.RUNTYPE_ALL }}
114114 env :
115115 AWS_ACCESS_KEY_ID : ${{ secrets.CI_SCENARIO_RW_AWS_ACCESS_KEY_ID }}
116116 AWS_SECRET_ACCESS_KEY : ${{ secrets.CI_SCENARIO_RW_AWS_SECRET_ACCESS_KEY }}
117117 run : |
118- python3 test/python/markdown_testing/markdown_testing.py $(pwd) --test-root=docs/walkthroughs/deploy 2>&1 | tee cicd/log/markdown-deploy-testing-results.log
118+ python3 test/python/markdown_testing/markdown_testing.py " $(pwd)" --test-root=docs/walkthroughs/deploy 2>&1 | tee cicd/log/markdown-deploy-testing-results.log
119119
120120 - name : Upload Test Results
121121
Original file line number Diff line number Diff line change 77
88from typing import Optional
99
10- from . typed_python_responses import SELECT_AWS_CLOUD_CONTROL_EVENTS_MINIMAL_EXPECTED
10+ from typed_python_responses import SELECT_AWS_CLOUD_CONTROL_EVENTS_MINIMAL_EXPECTED
1111
1212_exe_name = 'stackql'
1313
You can’t perform that action at this time.
0 commit comments