File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ clean-coverage: ## remove coverage artifacts
6161
6262.PHONY : clean-test
6363clean-test : # # remove test artifacts
64+ rm -fr .tox/
6465 rm -fr .pytest_cache
6566
6667.PHONY : clean
@@ -80,6 +81,10 @@ install-test: clean-build clean-pyc ## install the package and test dependencies
8081install-develop : clean-build clean-pyc # # install the package in editable mode and dependencies for development
8182 pip install -e .[dev]
8283
84+ .PHONY : install-readme
85+ install-readme : clean-build clean-pyc # # install the package in editable mode and readme dependencies for developement
86+ pip install -e .[readme]
87+
8388# LINT TARGETS
8489
8590.PHONY : lint
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ git clone https://github.com/sdv-dev/Copulas.git
3333cd Copulas
3434git checkout main
3535make install-develop
36+ make install-readme
3637```
3738
3839## Linting and tests
@@ -46,12 +47,16 @@ make test && make lint
4647And you will see something like this:
4748
4849```
49- ============================ 169 passed, 1 skipped, 3 warnings in 7.10s ============================
50- flake8 copulas tests examples
51- isort -c copulas tests examples
50+ Coverage XML written to file ./integration_cov.xml
51+ ====================== 81 passed, 7820 warnings in 23.54s ======================
52+ ...
53+ invoke lint
54+ No broken requirements found.
55+ All checks passed!
56+ 86 files already formatted
5257```
5358
54- The execution has finished with no errors, 1 test skipped and 3 warnings.
59+ The execution has finished with no errors, 0 test skipped and 7820 warnings.
5560
5661## Documentation
5762
You can’t perform that action at this time.
0 commit comments