mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
2a6dac19b5
Otherwise we can't find the psutil dependency
22 lines
552 B
Makefile
22 lines
552 B
Makefile
srcdir=@srcdir@
|
|
|
|
SHELL=bash
|
|
|
|
all: test
|
|
|
|
test: venv/bin/pytest fakekey
|
|
(source ./venv/bin/activate; pytest --hostkey=fakekey --dbclient=../dbclient --dropbear=../dropbear $(srcdir) )
|
|
|
|
one: venv/bin/pytest fakekey
|
|
(source ./venv/bin/activate; pytest --hostkey=fakekey --dbclient=../dbclient --dropbear=../dropbear $(srcdir) -k exit)
|
|
|
|
fakekey:
|
|
../dropbearkey -t ecdsa -f $@
|
|
|
|
venv/bin/pytest: $(srcdir)/requirements.txt
|
|
python3 -m venv init venv
|
|
./venv/bin/pip install --upgrade pip
|
|
./venv/bin/pip install -r $(srcdir)/requirements.txt
|
|
|
|
.PHONY: test
|