Skip to content

remove init file

remove init file #30

Workflow file for this run

# .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: 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