pyIPAM - Docker Plugin for IPAM written in Python
Jacek Kowalski
2020-05-18 f0d935291715742b2e9f71c1b5e1ecbf23d02eff
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'