Skip to content

Commit 08d1ece

Browse files
committed
final cleanup
1 parent 024dce7 commit 08d1ece

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ clean-coverage: ## remove coverage artifacts
6161

6262
.PHONY: clean-test
6363
clean-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
8081
install-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

RELEASE.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ git clone https://github.com/sdv-dev/Copulas.git
3333
cd Copulas
3434
git checkout main
3535
make install-develop
36+
make install-readme
3637
```
3738

3839
## Linting and tests
@@ -46,12 +47,16 @@ make test && make lint
4647
And 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

0 commit comments

Comments
 (0)