Skip to content

Commit

Permalink
build: changed poetry rules
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLiegiBastonLiegi committed Jul 17, 2024
1 parent 8fff5b8 commit c27cfdf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
doctests: false
poetry-extras: --all-extras
poetry-extras: "--with tests"
secrets: inherit
17 changes: 17 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""conftest.py.
Pytest fixtures.
"""

import pytest
from qibo.backends import construct_backend

# backends to be tested
BACKENDS = [
"numpy",
"tensorflow",
"pytorch",
"qibojit-numba",
"qibojit-cupy",
"qibojit-cuquantum",
]

0 comments on commit c27cfdf

Please sign in to comment.