Skip to content

Commit

Permalink
Updated tests and fixed deprecation warning in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanoGuerrini committed Mar 14, 2024
1 parent ff19b59 commit 3982a50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Upload Python Package
on:

push: {}

pull_request: {}

release:
Expand All @@ -17,7 +17,7 @@ jobs:
name: Code QA
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: pip install black flake8 isort
- run: black --version
- run: isort --version
Expand All @@ -38,7 +38,7 @@ jobs:
needs: quality

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
with:
Expand All @@ -63,7 +63,7 @@ jobs:
needs: checks

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
Expand Down
1 change: 0 additions & 1 deletion tests/test_hda.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def test_custom_path_config():
def test_mixed_config():
config = Configuration(user="TU", password="TP", path=CUSTOM_HDRRC)
c = Client(config=config)
assert c.config.url == "TESTURL"
assert c.config.user == "TU"
assert c.config.password == "TP"

Expand Down

0 comments on commit 3982a50

Please sign in to comment.