-
Notifications
You must be signed in to change notification settings - Fork 4
220 lines (214 loc) · 7.69 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: test
on:
push:
pull_request:
types: [review_requested, ready_for_review]
jobs:
# *************************************
# ************* Pre-commit ************
# *************************************
pre-commit:
name: pre-commit ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
max-parallel: 5
matrix:
os:
- ubuntu-22.04
python-version:
# - "3.11"
- "3.10"
# - "3.9"
# - "3.8"
# - "3.7"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: '**/setup.py'
- name: Install detect-secrets
run: pip install --no-cache-dir detect-secrets doc8 isort==5.11.5
- name: Run pre-commit
uses: pre-commit/[email protected]
# *************************************
# *********** Additional tests ********
# *************************************
test-sqlalchemy-integration:
needs: pre-commit
name: test-sqlalchemy-integration ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 5
matrix:
os:
- ubuntu-22.04
# - Windows
# - MacOs
python-version:
- "3.11"
- "3.10"
# - "3.9"
# - "3.8"
# - "3.7"
steps:
- name: Install wkhtmltopdf
run: sudo apt-get update && sudo apt-get install -y wkhtmltopdf libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 poppler-utils
- name: Clean-up
run: sudo apt clean && sudo apt autoclean && sudo rm -rf /tmp/* && sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: '**/examples/requirements/flask.txt'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
- name: Install tox
run: |
python -m pip install --no-cache-dir tox-gh-actions uv Django djangorestframework django-extensions drf_spectacular
- name: Compile requirements
run: uv pip compile examples/requirements/flask.in --no-strip-extras
- name: Install requirements
run: pip install --no-cache-dir -r examples/requirements/flask.txt
- name: Run test suite
# continue-on-error: true
run: pytest -vrx src/faker_file/tests/test_sqlalchemy_integration.py #--workers 2
env:
PYTEST_ADDOPTS: "-vv --durations=10"
test-augmented-file-from-dir-provider:
needs: pre-commit
name: test-augmented-file-from-dir-provider ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 5
matrix:
os:
- ubuntu-22.04
# - Windows
# - MacOs
python-version:
- "3.11"
- "3.10"
- "3.9"
# - "3.8"
# - "3.7"
steps:
- name: Install wkhtmltopdf
run: sudo apt-get update && sudo apt-get install -y wkhtmltopdf libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 poppler-utils
- name: Clean-up
run: sudo apt clean && sudo apt autoclean && sudo rm -rf /tmp/* && sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: '**/examples/requirements/ml.txt'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
- name: Install tox
run: |
python -m pip install --no-cache-dir tox-gh-actions uv Django djangorestframework django-extensions drf_spectacular
# - name: Remove compiled requirements
# run: rm examples/requirements/ml.txt
- name: Compile requirements
run: uv pip compile examples/requirements/ml.in --no-strip-extras -o examples/requirements/ml.txt
# - name: Install package
# run: pip install .[all]
- name: Install requirements
run: pip install --no-cache-dir -r examples/requirements/ml.txt
- name: Run test suite
# continue-on-error: true
run: pytest -vrx src/faker_file/tests/test_augment_file_from_dir_provider.py #--workers 2
env:
PYTEST_ADDOPTS: "-vv --durations=10"
- name: Coveralls
id: coveralls-setup
continue-on-error: true
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Run Tests
# *************************************
# ************* Main tests ************
# *************************************
# Since tox is used, it already covers testing of various Python versions
# therefore, there's no need to have run tox tests multiple times. Just once
# is fairly sufficient.
test:
needs: pre-commit
name: test ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 5
matrix:
os:
- ubuntu-22.04
# - Windows
# - MacOs
python-version:
- "3.11"
# - "3.10"
# - "3.9"
# - "3.8"
# - "3.7"
steps:
- name: Install wkhtmltopdf
run: sudo apt-get update && sudo apt-get install -y wkhtmltopdf libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 poppler-utils
- name: Clean-up
run: sudo apt clean && sudo apt autoclean && sudo rm -rf /tmp/* && sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" && sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: '**/examples/requirements/django_*.txt'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
- name: Install tox
run: python -m pip install --no-cache-dir tox-gh-actions
- name: Run test suite
run: tox -r #--parallel auto
env:
PYTEST_ADDOPTS: "-vv --durations=10"
- name: Coveralls
id: coveralls-setup
continue-on-error: true
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Run Tests
# *************************************
# ************** Coveralls ************
# *************************************
coveralls_finish:
name: coveralls_finish
needs: test
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
python -m pip install pyyaml
- name: Coveralls Finished
id: coveralls-finish
continue-on-error: true
# if: steps.coveralls-setup.outcome == 'success'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true
debug: True