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 49c2f69 commit dd276efCopy full SHA for dd276ef
.github/workflows/ci.yml
@@ -26,3 +26,11 @@ jobs:
26
- name: Test with pytest
27
if: success() || failure()
28
run: pytest
29
+ - name: Set up Node.js 10
30
+ uses: actions/setup-node@v1
31
+ with:
32
+ node-version: 10.x
33
+ - name: Run integration tests against emulator
34
+ run: |
35
+ npm install -g firebase-tools
36
+ firebase emulators:exec --only database --project fake-project-id 'pytest integration/test_db.py'
.travis.yml
@@ -1,16 +1,6 @@
1
language: python
2
python:
3
- "3.4"
4
- - "3.5"
5
- - "3.6"
6
- - "3.7"
7
- - "pypy3.5"
8
-
9
-jobs:
10
- include:
11
- - name: "Lint"
12
- python: "3.7"
13
- script: ./lint.sh all
14
15
before_install:
16
- nvm install 8 && npm install -g firebase-tools
0 commit comments