Skip to content

Commit

Permalink
App debug 9
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion committed Nov 13, 2023
1 parent 21a75be commit 5f18b8b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/pr-pytest-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,16 @@ jobs:
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --extras tests
run: poetry install --no-interaction --extras tests
- name: Switch to development pydicom
run: |
pip install git+https://github.com/pydicom/pydicom &&
poetry run pip list
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
# /home/runner/work/pynetdicom/pynetdicom/.venv/bin/python
run: |
pwd &&
ls -a &&
ls -a /home/runner/work/pynetdicom/pynetdicom/.venv/bin
echo $VENV &&
ls $VENV
#poetry run pytest --ignore=pynetdicom/tests
poetry run pytest --ignore=pynetdicom/tests
# pydicom-release:
# runs-on: ubuntu-latest
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/pr-pytest.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: pull-request-pytest

on:
#pull_request:
# branches: [ main ]
pull_request:
branches: [ main ]

jobs:

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --extras tests
run: poetry install --no-interaction --extras tests
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --extras tests
run: poetry install --no-interaction --extras tests
- name: Switch to development pydicom
run: |
pip install git+https://github.com/pydicom/pydicom
Expand Down Expand Up @@ -152,7 +152,9 @@ jobs:
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --extras tests
run: |
poetry install --no-interaction --extras tests &&
poetry run pip list
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down

0 comments on commit 5f18b8b

Please sign in to comment.