Skip to content

Commit

Permalink
Empty commit
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquesebastiao committed Jan 23, 2024
1 parent a08d200 commit 3497e84
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
export NASA_API_KEY="ZJxTfXzYrL819SNX0ex89YUDoSmw2htRWZfiEiPD"
- name: Run Tests
run: pytest -s -x --cov=skyport -vv
- name: Upload coverage reports to Codecov
Expand Down
2 changes: 1 addition & 1 deletion tests/test_apod.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ApodTest(CliUnitTest):
def test_return_with_remaining_option_of_apod(self):
print('\n' + '>>>>> ' + getenv('NASA_API_KEY'))
print('\n' + '>>>>> ' + getenv('NASA_API_KEY', 'DEMO_KEY'))
result = self.invoke('apod', '-r')
if result.exit_code == 0:
self.assertIn('Remain', result.output)
Expand Down

0 comments on commit 3497e84

Please sign in to comment.