From 203ec7f2585acf080dd334984dc9d09150314cbc Mon Sep 17 00:00:00 2001 From: esc Date: Fri, 19 Apr 2024 21:21:22 +0200 Subject: [PATCH] update test and conda install targets in makefile As title --- makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 0dfb407..edbaf1b 100644 --- a/makefile +++ b/makefile @@ -4,10 +4,13 @@ all: build: python -m pip install -vv -e . test: - pytest --pyargs numba_rvsdg + coverage run -m pytest --pyargs numba_rvsdg + coverage report lint: pre-commit run --all-files docs: cd docs && make html conda-env: - conda create -n numba-rvsdg python=3.12 python-graphviz pyyaml pytest sphinx sphinx_rtd_theme + conda create -n numba-rvsdg +conda-install: + conda install python=3.12 python-graphviz pyyaml pytest sphinx sphinx_rtd_theme coverage