Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
fix snyk import error (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Feb 27, 2023
1 parent e3cfdd5 commit 5e71055
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,11 +1,11 @@
.PHONY: venv tox lint test install

install:
./venv/bin/pip install -r requirements-dev.txt
./venv/bin/pip install -r requirements-dev.txt -r requirements.txt

venv:
python3.8 -m venv venv
./venv/bin/pip install -r requirements-dev.txt
./venv/bin/pip install -r requirements-dev.txt -r requirements.txt
# source venv/bin/activate

lint:
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
@@ -1,4 +1,3 @@
-rrequirements.txt
asynctest
autopep8
coverage
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Expand Up @@ -2,7 +2,9 @@
envlist = py38

[testenv]
deps = -rrequirements-dev.txt
deps =
-r requirements-dev.txt
-r requirements.txt
passenv = *
commands =
coverage run --branch --source doozerlib -m unittest discover -t . -s tests/
Expand Down

0 comments on commit 5e71055

Please sign in to comment.