Skip to content

Commit 4551af9

Browse files
committed
feat(ci): pasqal almost ok
1 parent aa104a6 commit 4551af9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name="pulser_scaleway",
25-
version="0.1.1",
25+
version="0.1.2",
2626
project_urls={
2727
"Documentation": "https://www.scaleway.com/en/quantum-as-a-service/",
2828
"Source": "https://github.com/scaleway/pulser-scaleway",

tests/test_pulser.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import numpy as np
1616

1717
from pulser import Pulse, Sequence, BlackmanWaveform, RampWaveform
18+
from pulser.backend.remote import BatchStatus
1819
from pulser.register import Register
1920
from pulser.devices import AnalogDevice
2021

@@ -60,5 +61,5 @@ def test_simple():
6061
wait=True,
6162
)
6263

63-
print(results.results)
64-
print(results.get_batch_status())
64+
assert len(results.results) == 2
65+
assert results.get_batch_status() == BatchStatus.DONE

0 commit comments

Comments
 (0)