Skip to content

small change missed in package name change #15

small change missed in package name change

small change missed in package name change #15

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pytest
python -m pip install flake8 pytest pytest-cov coveralls
pip install -r requirements.txt
python -m pip install .
- name: Test with pytest
run: |
cd paltax
coverage run --source paltax --omit="*Configs/*,*_test.py" -m unittest discover -v -p "*_test.py"
coverage lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./paltax/coverage.lcov