Skip to content

Cleaned up Tabor driver for new firmware and included temporary fix f… #64

Cleaned up Tabor driver for new firmware and included temporary fix f…

Cleaned up Tabor driver for new firmware and included temporary fix f… #64

Workflow file for this run

name: CI
on: [pull_request, push, workflow_dispatch]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["windows-latest"]
#os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.9"]
# XXX Workaround for Windows runners redirecting the output of commands to files.
# See: https://github.com/databrickslabs/dbx/issues/455#issuecomment-1312770919
env:
PYTHONIOENCODING: "utf8"
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
# - uses: Jimver/[email protected]
# id: cuda-toolkit
# with:
# cuda: '12.1.0'
- name: Install
run: |
pip install -e .
# pip install cupy-cuda12x
#pip install -r requirements_test.txt
- name: Run tests
run: python -m unittest discover -s UnitTests
#pytest