Skip to content

Commit

Permalink
Update unit test GHA to resolve failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 12, 2024
1 parent 54bec73 commit 1dd32eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
pytest tests/test_cached_api.py --doctest-modules --junitxml=tests/cached-api-test-results.xml
- name: Upload cached API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: cached-api-test-results
path: tests/cached-api-test-results.xml
Expand All @@ -63,7 +63,7 @@ jobs:
run: |
pytest tests/test_wolfram_api.py --doctest-modules --junitxml=tests/wolfram-api-test-results.xml
- name: Upload Wolfram API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wolfram-api-test-results
path: tests/wolfram-api-test-results.xml
Expand All @@ -72,7 +72,7 @@ jobs:
run: |
pytest tests/test_alpha_vantage_api.py --doctest-modules --junitxml=tests/alphavantage-api-test-results.xml
- name: Upload Alpha Vantage API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: alphavantage-api-test-results
path: tests/alphavantage-api-test-results.xml
Expand All @@ -81,7 +81,7 @@ jobs:
run: |
pytest tests/test_owm_api.py --doctest-modules --junitxml=tests/owm-api-test-results.xml
- name: Upload Open Weather Map API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: owm-api-test-results
path: tests/owm-api-test-results.xml
Expand All @@ -92,7 +92,7 @@ jobs:
env:
MAP_MAKER_KEY: ${{secrets.map_maker_key}}
- name: Upload Map Maker API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: map-maker-api-test-results
path: tests/map-maker-api-test-results.xml
Expand All @@ -101,7 +101,7 @@ jobs:
run: |
pytest tests/test_generic_controller.py --doctest-modules --junitxml=tests/generic-controller-test-results.xml
- name: Upload Generic API test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: generic-controller-test-results
path: tests/generic-controller-test-results.xml

0 comments on commit 1dd32eb

Please sign in to comment.