Skip to content

force-feeding pytest #5

force-feeding pytest

force-feeding pytest #5

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .[test]
- name: List installed packages
run: pip list
- name: Run tests
run: |
python -m pytest appimanage/tests