diff --git a/Makefile b/Makefile index b2e27fb3e..84edb22c6 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ venv: python3.8 -m venv venv ./venv/bin/pip install --upgrade pip - ./venv/bin/pip install -e artcommon/ doozer/ -e elliott/ -e pyartcd/ - ./venv/bin/pip install -r doozer/requirements-dev.txt -r pyartcd/requirements-dev.txt + ./venv/bin/pip install -e artcommon/ doozer/ -e elliott/ -e pyartcd/ -e ocp-build-data-validator/ + ./venv/bin/pip install -r doozer/requirements-dev.txt -r pyartcd/requirements-dev.txt -r ocp-build-data-validator/requirements-dev.txt cd elliott && ../venv/bin/pip install '.[tests]' # source venv/bin/activate @@ -16,5 +16,6 @@ unit: ./venv/bin/python -m pytest --verbose --color=yes doozer/tests/ ./venv/bin/python -m pytest --verbose --color=yes elliott/tests/ ./venv/bin/python -m pytest --verbose --color=yes pyartcd/tests/ + ./venv/bin/python -m pytest --verbose --color=yes ocp-build-data-validator/tests/ test: lint unit