2021-01-21 19:04:01 +05:30
|
|
|
name: Tests
|
|
|
|
|
2023-07-10 14:20:40 +02:00
|
|
|
on: [push, pull_request]
|
2021-01-21 19:04:01 +05:30
|
|
|
|
|
|
|
env:
|
2022-10-27 11:24:53 +03:00
|
|
|
PYTHON_LATEST: "3.11"
|
2021-01-21 19:04:01 +05:30
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2023-07-10 14:43:45 +02:00
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
|
2021-01-21 19:04:01 +05:30
|
|
|
fail-fast: false
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Cache dependencies
|
|
|
|
id: cache-deps
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
${{ env.pythonLocation }}/bin/*
|
|
|
|
${{ env.pythonLocation }}/lib/*
|
|
|
|
${{ env.pythonLocation }}/scripts/*
|
|
|
|
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements.txt') }}
|
|
|
|
- name: Install The Fuck with all dependencies
|
|
|
|
if: steps.cache-deps.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
pip install -Ur requirements.txt coveralls
|
|
|
|
python setup.py develop
|
|
|
|
- name: Lint
|
|
|
|
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_LATEST
|
|
|
|
run: flake8
|
|
|
|
- name: Run tests
|
|
|
|
if: matrix.os != 'ubuntu-latest' || matrix.python-version != env.PYTHON_LATEST
|
|
|
|
run: coverage run --source=thefuck,tests -m pytest -v --capture=sys tests
|
|
|
|
- name: Run tests (including functional)
|
|
|
|
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_LATEST
|
2023-07-10 14:29:31 +02:00
|
|
|
run: |
|
|
|
|
docker build -t thefuck/python3 -f tests/Dockerfile --build-arg PYTHON_VERSION=3 .
|
|
|
|
docker build -t thefuck/python2 -f tests/Dockerfile --build-arg PYTHON_VERSION=2 .
|
|
|
|
coverage run --source=thefuck,tests -m pytest -v --capture=sys tests --enable-functional
|
2021-01-21 19:04:01 +05:30
|
|
|
- name: Post coverage results
|
|
|
|
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_LATEST
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: coveralls --service=github
|
2023-07-10 14:22:23 +02:00
|
|
|
test-deprecated:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ["2.7", "3.6"]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: python:${{ matrix.python-version }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install The Fuck with all dependencies
|
|
|
|
run: |
|
|
|
|
pip install -Ur requirements.txt coveralls
|
|
|
|
python setup.py develop
|
|
|
|
- name: Lint
|
|
|
|
run: flake8
|
|
|
|
- name: Run tests
|
|
|
|
run: coverage run --source=thefuck,tests -m pytest -v --capture=sys tests
|