pyIPAM - Docker Plugin for IPAM written in Python
Jacek Kowalski
2020-05-04 3e641fb208e09c20ecb89071f8d2f324e6e32f9e
1
2
3
4
5
6
7
#!/bin/bash
 
if [ -d venv ]; then
  . ./venv/bin/activate
fi
 
python -m unittest discover -v -s test -t . -p '*.py'