Skip to content

Merge pull request #49 from CSCI-5828-S24/stage #9

Merge pull request #49 from CSCI-5828-S24/stage

Merge pull request #49 from CSCI-5828-S24/stage #9

name: integration-test
on: [push, workflow_dispatch]
jobs:
run-python-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
working-directory: ./integration-test
run: python -m pip install -r requirements.txt
- name: Test with pytest
working-directory: ./integration-test
run: python -m pytest