pyIPAM - Docker Plugin for IPAM written in Python
Jacek Kowalski
2026-03-11 a4d4f806e8d9a9f019c18c667afa1e703b4bf97e
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'