Skip to content

Commit bea1f9d

Browse files
committed
adds continue-on-error
1 parent ec413b6 commit bea1f9d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-test-lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,18 @@ jobs:
5252
run: npm install -g @stoplight/prism-cli
5353

5454
- name: Start PRISM Server
55-
run: ./start-prism.sh
55+
run: |
56+
./start-prism.sh & echo $! > prism_pid.txt
5657
working-directory: xero-python/tests/utils
5758

5859
- name: Run Test
5960
run: |
6061
source venv/bin/activate
6162
pytest -v
6263
working-directory: xero-python
64+
continue-on-error: true
6365

6466
- name: Stop PRISM
67+
if: success() || failure()
6568
run: pkill -f prism
6669
working-directory: xero-python

0 commit comments

Comments
 (0)