Skip to content

Commit

Permalink
adjust names
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 10, 2024
1 parent 83eb756 commit dbacd89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_tests_on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
DevTests:
uses: ./.github/workflows/testing_dev.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
IPINFO_CREDENTIALS: ${{ secrets.IPINFO_CREDENTIALS }}
CODECOV_CREDENTIALS: ${{ secrets.CODECOV_CREDENTIALS }}
8 changes: 5 additions & 3 deletions .github/workflows/testing_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
secrets:
IPINFO_CREDENTIALS:
required: true
CODECOV_TOKEN:
CODECOV_CREDENTIALS:
required: true

env:
Expand All @@ -30,7 +30,9 @@ jobs:
python-version: "3.12"

- name: Global Setup
run: python -m pip install -U pip
run: |
python -m pip install -U pip
pip install pytest
- name: Install local checkout
run: pip install --no-cache-dir .
Expand All @@ -53,7 +55,7 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_CREDENTIALS }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
Expand Down

0 comments on commit dbacd89

Please sign in to comment.