Skip to content

Commit c0094ed

Browse files
committed
Merged with master
2 parents 0b70687 + ffebd3c commit c0094ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2065
-1536
lines changed

.github/workflows/ci.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
python: [3.5, 3.6, 3.7, pypy3]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Set up Python ${{ matrix.python }}
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: ${{ matrix.python }}
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements.txt
23+
- name: Test with pytest
24+
run: pytest
25+
- name: Set up Node.js 10
26+
uses: actions/setup-node@v1
27+
with:
28+
node-version: 10.x
29+
- name: Run integration tests against emulator
30+
run: |
31+
npm install -g firebase-tools
32+
firebase emulators:exec --only database --project fake-project-id 'pytest integration/test_db.py'
33+
34+
lint:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/checkout@v1
38+
- name: Set up Python 3.7
39+
uses: actions/setup-python@v1
40+
with:
41+
python-version: 3.7
42+
- name: Install dependencies
43+
run: |
44+
python -m pip install --upgrade pip
45+
pip install -r requirements.txt
46+
- name: Lint with pylint
47+
run: ./lint.sh all

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 270 deletions
This file was deleted.

0 commit comments

Comments
 (0)