Skip to content

Cleanup unix socket after test #8

Cleanup unix socket after test

Cleanup unix socket after test #8

Workflow file for this run

name: Python application
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 nose
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 src tests
- name: Test with pytest
run: |
nosetests -v tests