Skip to content

Fix/skip duplicate race #393

Fix/skip duplicate race

Fix/skip duplicate race #393

Workflow file for this run

name: Apsis CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Upgrade pip
run: pip3 install --upgrade pip 'setuptools>=61'
- name: Install package
run: pip3 install -e .[dev]
- name: Install procstar
run: wget -ti https://github.com/alexhsamuel/procstar/releases/download/v$(python -c 'import procstar; print(procstar.__version__)')/procstar && chmod +x procstar && mv procstar /usr/local/bin/
- name: Run Python unit tests
run: pytest test/unit -m "not local_ssh"
- name: Run Python integration tets
run: pytest test/int -m "not local_ssh"