We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9779dda commit bc12f10Copy full SHA for bc12f10
.github/workflows/ci.yml
@@ -84,7 +84,7 @@ jobs:
84
sleep 30 # ElasticSearch takes few seconds to start, make sure it is available when the build script runs
85
- run: curl -v http://localhost:9200
86
- name: Run tests
87
- run: pytest --cov-report term --cov-report xml --cov=c2corg_api
+ run: export $(cat .env | grep -v "^#" | xargs) && pytest --cov-report term --cov-report xml --cov=c2corg_api
88
- name: Send coverage to codacy
89
# secrets are not available for PR from forks, and dependabot PRs
90
if: ${{ github.event_name != 'pull_request' && github.actor != 'dependabot[bot]' }}
0 commit comments