Skip to content

Commit 9dd7d7f

Browse files
Release 1.6.0 (#13)
1 parent e814122 commit 9dd7d7f

File tree

684 files changed

+51511
-87198
lines changed

Some content is hidden

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

684 files changed

+51511
-87198
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
indent_style = space
33
indent_size = 2
44
[*.py]
5-
indent_size = 4
5+
indent_size = 4

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,6 @@ target/
6565
#Ipython Notebook
6666
.ipynb_checkpoints
6767

68+
.openapi-generator
6869
/vendor
70+
/.github/workflows/python.yml

.gitlab-ci.yml

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
14
# ref: https://docs.gitlab.com/ee/ci/README.html
5+
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
26

37
stages:
48
- test
59

6-
.tests:
10+
.pytest:
711
stage: test
812
script:
913
- pip install -r requirements.txt
1014
- pip install -r test-requirements.txt
1115
- pytest --cov=dropbox_sign
1216

13-
test-3.6:
14-
extends: .tests
15-
image: python:3.6-alpine
16-
test-3.7:
17-
extends: .tests
17+
pytest-3.7:
18+
extends: .pytest
1819
image: python:3.7-alpine
19-
test-3.8:
20-
extends: .tests
20+
pytest-3.8:
21+
extends: .pytest
2122
image: python:3.8-alpine
22-
test-3.9:
23-
extends: .tests
23+
pytest-3.9:
24+
extends: .pytest
2425
image: python:3.9-alpine
26+
pytest-3.10:
27+
extends: .pytest
28+
image: python:3.10-alpine
29+
pytest-3.11:
30+
extends: .pytest
31+
image: python:3.11-alpine

.openapi-generator-ignore

-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,3 @@
2121
#docs/*.md
2222
# Then explicitly reverse the ignore rule for a single file:
2323
#!docs/README.md
24-
git_push.sh
25-
docs/*AllOf*
26-
**/model/*all_of*

0 commit comments

Comments
 (0)