adding cupy to requirements #7
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: Run Tests with Pytest | |
on: [push, pull_request] | |
jobs: | |
pytest: | |
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.11' | |
- name: Clean up previous builds | |
run: | | |
find . -name "*.egg-info" -type d -exec rm -rf {} + | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
pip install pytest | |
- name: Install qcpy | |
run: | | |
pip install . | |
- name: Verify installed packages | |
run: | | |
pip list | |
- name: Debug Python environment | |
run: | | |
python --version | |
pip --version | |
pip list | |
- name: Run pytest | |
env: | |
PYTHONPATH: ./src | |
run: | | |
pytest --maxfail=1 --disable-warnings -q |