Skip to content

Make private all models and method container classes, complete the pa… #112

Make private all models and method container classes, complete the pa…

Make private all models and method container classes, complete the pa… #112

Workflow file for this run

name: Package tests
on:
push:
branches:
- master
pull_request:
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11.0"
- uses: actions/cache@v3
with:
path: venv
key: ${{ runner.os }}-${{ hashFiles('requirements-tests.txt') }}
- name: Install Python testing dependencies
run: |
python -m venv create venv
source venv/bin/activate
python -m pip install -r requirements-tests.txt
- name: Run tests
run: python -m pytest