change python path #21
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
# .github/workflows/python-tests.yml | |
name: LaCE automated testing | |
on: | |
push: | |
branches: '*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Set PYTHONPATH | |
run: export PYTHONPATH="${PYTHONPATH}:$'/home/runner/work/LaCE/LaCE'" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Run tests | |
run: | | |
pip install pytest | |
#pip install GPy==1.13.1 | |
pytest tests/test_lace.py |