Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion committed Nov 13, 2023
1 parent 3d8eeaa commit b2cd349
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/merge-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ jobs:
path: .venv
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 +106,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 All @@ -134,6 +133,7 @@ jobs:
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -150,8 +150,9 @@ jobs:
path: .venv
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
1 change: 0 additions & 1 deletion .github/workflows/pr-pytest-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
path: .venv
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 --extras tests
- name: Switch to development pydicom
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pr-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
path: .venv
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 --extras tests
- name: Test with pytest
env:
Expand Down Expand Up @@ -151,7 +150,6 @@ jobs:
path: .venv
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 --extras tests &&
poetry run pip list
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/pr-type-lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
path: .venv
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 dev
- name: Run type check using mypy
run: |
Expand Down
1 change: 0 additions & 1 deletion pynetdicom/apps/tests/test_echoscp.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
def start_echoscp(args):
"""Start the echoscp.py app and return the process."""
pargs = [sys.executable, APP_FILE, "11112"] + [*args]
#print(sys.executable)
return subprocess.Popen(pargs)


Expand Down

0 comments on commit b2cd349

Please sign in to comment.