Skip to content

Commit

Permalink
App debug 7
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion committed Nov 13, 2023
1 parent ffaf794 commit d7800b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pr-pytest-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-python@v4
id: setup-python
with:
python-version: ${{ matrix.python-version }}
python-version: [ '3.11' ] #${{ matrix.python-version }}
- name: Install poetry
uses: snok/install-poetry@v1
with:
Expand All @@ -40,7 +40,8 @@ jobs:
run: poetry install --no-interaction --no-root --extras tests
- name: Switch to development pydicom
run: |
pip install git+https://github.com/pydicom/pydicom
pip install git+https://github.com/pydicom/pydicom &&
poetry run pip list
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion pynetdicom/apps/tests/test_echoscp.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
def start_echoscp(args):
"""Start the echoscp.py app and return the process."""
pargs = [sys.executable, APP_FILE, "11112"] + [*args]
return subprocess.Popen(" ".join(pargs), shell=True)
#print(sys.executable)
return subprocess.Popen(pargs)


def start_echoscp_cli(args):
Expand Down

0 comments on commit d7800b4

Please sign in to comment.