test requirements #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and run with Docker Compose | |
run: | | |
docker-compose up -f "dev/docker/docker-compose.yml" -d --build --abort-on-container-exitup | |
- name: Run PyTest | |
run: | | |
pip install -r requirements.txt | |
- name: Run PyTest | |
run: | | |
pytest tests/test_mock_db.py --data-path=data/metadata/mini | |