Skip to content

Commit

Permalink
Fixing ENV VAR definition for kaggle script.
Browse files Browse the repository at this point in the history
  • Loading branch information
guiferviz committed Jun 1, 2020
1 parent 1b4d903 commit c6adf5a
Show file tree
Hide file tree
Showing 2 changed files with 429 additions and 74 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ jobs:
- name: Run tests
env:
# Needed for downloading test data in the example notebooks.
KAGGLE_USERNAME: ${{ env.KAGGLE_USERNAME }}
KAGGLE_KEY: ${{ env.KAGGLE_KEY }}
KAGGLE_USERNAME: ${{ secrets.KAGGLE_USERNAME }}
KAGGLE_KEY: ${{ secrets.KAGGLE_KEY }}
run: |
coverage run --source=recipipe -m pytest
ls
- name: Test coverage
run: |
# Never coverage under 100%!
Expand Down
Loading

0 comments on commit c6adf5a

Please sign in to comment.