Skip to content

Commit

Permalink
test(tests): bug fix [2024-11-27]
Browse files Browse the repository at this point in the history
  • Loading branch information
CHRISCARLON committed Nov 27, 2024
1 parent 3494ab3 commit b4b611f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/herding_cats_explorer_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest-cov
poetry install --no-interaction
- name: Create pytest.ini
Expand All @@ -40,7 +41,7 @@ jobs:
- name: Run tests with coverage
run: |
poetry run pytest tests/ --cov=./ --cov-report=xml
pytest tests/ --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down
2 changes: 1 addition & 1 deletion tests/open_data_soft/test_ods_get_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@pytest.mark.parametrize("catalogue_url", CATALOGUES)
def test_package_list_dictionary(catalogue_url):
"""
Test the package list functionality for predefined data catalogues
Test the package list functionality for predefined data catalogues...
"""
with CatSession(catalogue_url) as cat_session:
explorer = OpenDataSoftCatExplorer(cat_session)
Expand Down

0 comments on commit b4b611f

Please sign in to comment.