Skip to content

commented out the test that is failing just to see if on git get the … #3

commented out the test that is failing just to see if on git get the …

commented out the test that is failing just to see if on git get the … #3

Workflow file for this run

name: Python Tests
on:
push:
branches: [main, develop, feature/citesting] # or your default branch name
pull_request:
branches: [main, develop, feature/citesting] # or your default branch name
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12.4' # Specify your Python version if needed
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest # Add any other dependencies your tests need
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
python -m pytest citestfiles/ -v # This will run all test files in citestfiles directory