Skip to content

Commit

Permalink
adds disown
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshk-tw committed Oct 23, 2024
1 parent 7834c27 commit ec413b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:
pip install -r requirements.txt -r requirements/dev.txt
working-directory: xero-python

- name: Check vulnerable packages
run: pip-audit -r requirements.txt -r requirements/dev.txt
working-directory: xero-python
# - name: Check vulnerable packages
# run: pip-audit -r requirements.txt -r requirements/dev.txt
# working-directory: xero-python

- name: Run Flake8
run: flake8 xero_python
working-directory: xero-python
# - name: Run Flake8
# run: flake8 xero_python
# working-directory: xero-python

- name: Build package
run: python setup.py sdist
working-directory: xero-python
# - name: Build package
# run: python setup.py sdist
# working-directory: xero-python

- name: Install Node.js
uses: actions/setup-node@v2
Expand All @@ -51,11 +51,8 @@ jobs:
- name: Install Prism
run: npm install -g @stoplight/prism-cli

- name: CHeck PRISM
run: prism --version

- name: Start PRISM Server
run: nohup ./start-prism.sh
run: ./start-prism.sh
working-directory: xero-python/tests/utils

- name: Run Test
Expand Down
2 changes: 2 additions & 0 deletions tests/utils/start-prism.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/mas
prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-payroll-nz.yaml --host 127.0.0.1 --port 4016 &
prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-payroll-au.yaml --host 127.0.0.1 --port 4017 &
prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-projects.yaml --host 127.0.0.1 --port 4018

disown

0 comments on commit ec413b6

Please sign in to comment.