Skip to content

Commit

Permalink
fix: @pytest.mark attributes + prep for 1.1 release (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikomiss authored Feb 9, 2024
1 parent 5a68e6f commit 3c866c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion azure-quantum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ First, define a quantum program or circuit, and create a job by submitting it to
target = workspace.get_targets("mytarget")

# Submit quantum program or circuit
job = target.submit(my_quantum_problem)
job = target.submit(my_quantum_program)

# Wait for job to complete and fetch results
result = job.get_results()
Expand Down
8 changes: 2 additions & 6 deletions azure-quantum/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ asyncio_mode = auto
markers =
live_test: mark a test as a live test that requires recordings.
ionq: mark a test as requiring access to ionq.
oneqbit: mark a test as requiring access to 1qbit.
asyncio: mark a test as using async i/o.
toshiba: mark a test as requiring access to toshiba.
qio: mark a test as requiring access to qio targets.
fpga: mark a test as requiring access to fpga targets.
quantinuum: mark a test as requiring access to quantinuum.
rigetti: mark a test as requiring access to Rigetti targets.
qci: mark a test as requiring access to QCI targets.
Expand All @@ -16,6 +11,7 @@ markers =
session: mark a test as requiring access to session feature.
cirq: mark a test as requiring Cirq
qiskit: mark a test as requiring Qiskit
quil: mark a test as requiring Quil
qir: mark a test as requiring QIR
echo_targets: mark a test as requiring access to Microsoft test echo targets.
pasqal: mark a test as requiring access to Pasqal targets.
microsoft_elements_dft: mark a test as requiring access to microsoft.dft targets.
2 changes: 1 addition & 1 deletion set_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os

major_minor = "1.0"
major_minor = "1.1"

BUILD_TYPE = os.environ.get("BUILD_TYPE") or "dev"
PATCH_NUMBER = os.environ.get("PATCH_NUMBER") or "0"
Expand Down

0 comments on commit 3c866c6

Please sign in to comment.