Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ The `.deb` installs the binary to `/usr/local/bin/nssec` and reference files (ru
```bash
git clone https://github.com/jsrobinson3/ns-security.git
cd ns-security
pip3 install -e .
sudo apt install python3-venv -y
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -e .
```

### Tested On
Expand Down
3 changes: 3 additions & 0 deletions tests/unit/test_placeholder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def test_import():
"""Verify the nssec package is importable."""
import nssec # noqa: F401