A library for automating hardware development and testing
List of dependencies for package to run.
- python modules, installed via
pip install hardware_tools
- numpy
- pyvisa
- cython
- colorama
- matplotlib
- scipy
- sklean
- Pillow
- scikit-image
- Test extensions, installed via
pip install hardware_tools[test]
- time-machine
- hardware-tools
If using hardware-tools in a virtual environment, do not place it within this repo directory. Set it outside due to an issue compiling the extensions with cython since it tries to compile the code inside the virtual environment as well.
mkdir workspace-hardware-tools
cd workspace-hardware-tools
python -m venv .
source ./Scripts/activate # or .\Scripts\activate.bat
git clone https://github.com/WattsUp/hardware-tools
cd hardware-tools
python -m pip install .
# To install latest stable version on PyPi, execute:
python -m pip install hardware_tools
# To install from source, execute:
git clone https://github.com/WattsUp/hardware-tools
cd hardware-tools
python -m pip install .
# For development, install as a link to repository such that code changes are used. And include testing packages
git clone https://github.com/WattsUp/hardware-tools
cd hardware-tools
python -m pip install -e .[test]
Explain how to use your project.
# TODO
Make sure to install package with testing extension
# To run the automated tests, execute:
python -m tests discover -s tests -t . --locals
# To save the results to file, execute:
python -m tests discover -s tests -t . --locals &> testing.log
## The following is a synopsis of unittest main arguments ##
# To run a singular test file, execute:
python -m tests $path_to_test_file
python -m tests tests.measurement.test_mask
# To run a singular test class, execute:
python -m tests $path_to_test_file.$class
python -m tests tests.measurement.test_mask.TestMaskDecagon
# To run a singular test method, execute:
python -m tests $path_to_test_file.$class.$method
python -m tests tests.measurement.test_mask.TestMaskDecagon.test_init
# Multiple can be strung together
python -m tests tests.measurement.test_mask tests.test_math
# To run coverage and print the report with missing lines, execute:
python -m coverage run && python -m coverage report -m
# To run profiler, execute:
python -m cProfile -s tottime -m tests discover -s tests -t . > profile.log
# To run linting, execute:
python -m pylint hardware_tools tests tools setup.py
Code development of this project adheres to Google Python Guide
Use yapf
to format files, based on Google's guide with the exception of indents being 2 spaces.
# To format all files, execute:
yapf -ir .
Versioning of this projects adheres to Semantic Versioning and is implemented using git tags.