blob: 6caaeaca6be963a81b1613d2b2f38b1dedd90f11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# qolab
Collection of scripts to run experimental hardware with python.
Started in April 2021 by Eugeniy E. Mikhailov
## Build instructions
To build a python wheel package and put it in `./dist/` directory, run
~~~~~
flit build
~~~~~
## Test instructions
~~~~~
export PYTHONPATH=.
python -m pytest
~~~~~
Note that we cannot just run `pytest` since I see no way to set the module search path.
|