Skip to content

Commit

Permalink
update test and conda install targets in makefile
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Apr 19, 2024
1 parent 7a44fc0 commit 203ec7f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 203ec7f

Please sign in to comment.