13 lines
387 B
Bash
Executable File
13 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Creates a Python test environment for running the motor driver tests. The
|
|
# test environmenet is created in the current working directory. It is
|
|
# recommended to create it in the root of the motorDriverTests repository.
|
|
|
|
/usr/bin/python3.11 -m venv "testenv"
|
|
source testenv/bin/activate
|
|
|
|
pip install 'caproto'
|
|
pip install 'pytest'
|
|
pip install 'pyyaml'
|
|
pip install 'numpy' |