Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Initializing the Repository (#4) #15

Initializing the Repository (#4)

Initializing the Repository (#4) #15

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- dev
jobs:
unit-tests:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install the app
run: |
python -m pip install .[test]
- name: Testing
id: test
run: |
# Ignore the network marks from the remote test environment
python -m pytest --color=yes -m "not network"