Skip to content

adding cupy to requirements #7

adding cupy to requirements

adding cupy to requirements #7

Workflow file for this run

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