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 ce038bd commit 5ce5ad2Copy full SHA for 5ce5ad2
.github/workflows/local-api-tests.yml
@@ -32,14 +32,14 @@ jobs:
32
run: git clone https://github.com/gadhagod/Hyrule-Compendium-API -b v2-src v2
33
- name: Start server
34
run: python3 -c "from server import app; app.run()" ${{ secrets.RS2_TOKEN }} &
35
+ env:
36
+ MONGO_PASSWORD: ${{ secrets.MONGO_PASSWORD }}
37
+ MONGO_USERNAME: ${{ secrets.MONGO_USERNAME }}
38
- name: Install test dependencies
39
run: |
40
cd tests
41
npm i
42
- name: Execute tests
43
44
- env URL="http://127.0.0.1:5000" npx mocha
- env:
- MONGO_PASSWORD: ${{ secrets.MONGO_PASSWORD }}
45
- MONGO_USERNAME: ${{ secrets.MONGO_USERNAME }}
+ env URL="http://127.0.0.1:5000" npx mocha
0 commit comments