Skip to content

Commit 9ce5226

Browse files
committed
feat: update for API v2.18
1 parent f30d206 commit 9ce5226

File tree

1,187 files changed

+145250
-50399
lines changed

Some content is hidden

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

1,187 files changed

+145250
-50399
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
19+
python-version: ["3.7" "3.8", "3.9", "3.10"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

.gitlab-ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# ref: https://docs.gitlab.com/ee/ci/README.html
2+
3+
stages:
4+
- test
5+
6+
.tests:
7+
stage: test
8+
script:
9+
- pip install -r requirements.txt
10+
- pip install -r test-requirements.txt
11+
- pytest --cov=flat_api
12+
13+
test-3.5:
14+
extends: .tests
15+
image: python:3.5-alpine
16+
test-3.6:
17+
extends: .tests
18+
image: python:3.6-alpine
19+
test-3.7:
20+
extends: .tests
21+
image: python:3.7-alpine
22+
test-3.8:
23+
extends: .tests
24+
image: python:3.8-alpine

0 commit comments

Comments
 (0)