commented out the test that is failing just to see if on git get the … #3
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: 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 |