Skip to content

Remove pytest from deps, modify ci.yml #7

Remove pytest from deps, modify ci.yml

Remove pytest from deps, modify ci.yml #7

Workflow file for this run

# This configuration does the following:
# It triggers the CI pipeline when code is pushed to the master branch.
# It sets up a Python environment, installs project dependencies, and runs pytest.
# Test results are uploaded as artifacts for later examination.
name: CI
on:
push:
branches:
# - master
- test_sanity
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.13
- name: Install Dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Run Tests with pytest
run: pytest pytest/test_sanity.py --junitxml=test-report.xml
continue-on-error: true # Continue to the next step even if tests fail
- name: Upload Test Artifacts
uses: actions/upload-artifact@v2
with:
name: test-results
path: test-report.xml