revamp tests and evaluation #366
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] | |
env: [{ MINIMAL: "true" }, { MINIMAL: "false" }] | |
include: | |
# custom python versions | |
- os: ubuntu-20.04 | |
python-version: 3.6 | |
- os: ubuntu-latest | |
python-version: 3.7 | |
- os: macos-latest | |
python-version: 3.8 | |
- os: macos-latest | |
python-version: "3.10" | |
- os: macos-latest | |
python-version: "3.12" | |
- os: windows-latest | |
python-version: 3.8 | |
- os: windows-latest | |
python-version: "3.10" | |
- os: windows-latest | |
python-version: "3.12" | |
steps: | |
# Python and pip setup | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Get pip cache dir | |
id: pip-cache | |
run: | | |
echo "::set-output name=dir::$(pip cache dir)" | |
- name: pip cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pip-cache.outputs.dir }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# package setup | |
- uses: actions/checkout@v4 | |
# tests | |
- name: Lint with flake8 | |
run: | | |
python -m pip install --upgrade flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Code format with black | |
if: ${{ matrix.python-version == '3.11' }} | |
run: | | |
python -m pip install --upgrade black | |
black --check --diff htmldate | |
- name: Install dependencies | |
run: python -m pip install -e "." | |
- name: Install full dependencies | |
if: ${{ matrix.env.MINIMAL == 'false'}} | |
run: python -m pip install -e ".[all]" | |
- name: Type checking with mypy | |
if: ${{ matrix.python-version == '3.11' }} | |
run: | | |
python -m pip install --upgrade mypy types-dateparser types-python-dateutil types-lxml types-urllib3 | |
mypy -p htmldate | |
- name: Test with pytest | |
run: | | |
python -m pip install --upgrade pytest pytest-cov | |
pytest --cov=./ --cov-report=xml | |
# coverage | |
- name: Upload coverage to Codecov | |
if: ${{ matrix.env.MINIMAL == 'false'}} | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: true | |
files: ./coverage.xml | |
verbose: true |