Skip to content

Commit dd276ef

Browse files
committed
Added emulator-based integration tests
1 parent 49c2f69 commit dd276ef

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,11 @@ jobs:
2626
- name: Test with pytest
2727
if: success() || failure()
2828
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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
language: python
22
python:
33
- "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
144

155
before_install:
166
- nvm install 8 && npm install -g firebase-tools

0 commit comments

Comments
 (0)