Merge pull request #31 from barseghyanartur/dev #680
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- 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 pip-tools Django djangorestframework django-extensions drf_spectacular | |
- name: Compile requirements | |
run: pip-compile examples/requirements/flask.in | |
- 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 | |
- 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 pip-tools Django djangorestframework django-extensions drf_spectacular | |
- name: Compile requirements | |
run: pip-compile examples/requirements/ml.in | |
- 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 ************ | |
# ************************************* | |
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 | |
- 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 |