Skip to content

Commit f22ed09

Browse files
author
Florian Maas
committed
fixed makefile
1 parent 8c9249f commit f22ed09

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lint: ## Check code formatting using isort, black, and flake8.
1818

1919
test: ## Test the code with pytest
2020
@echo "🚀 Testing code: Running pytest"
21-
@pytest --doctest-modules
21+
@pytest --doctest-modules tests
2222

2323
build: clean-build ## Build wheel file using poetry
2424
@echo "🚀 Creating wheel file"

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,11 @@ This is a [cookiecutter](https://github.com/cookiecutter/cookiecutter) repositor
2525

2626
First, create an empty [new repository](https://github.com/new) on Github. Give it a name that only contains alphanumeric characters and optionally `-`. <u>Do not check any boxes under the option *'Initialize this repository with'*.</u>
2727

28-
Then, on your local machine, either install `cookiecutter` in a pre-existing `pip`- or `poetry` managed environment with:
28+
Then, on your local machine, install `cookiecutter` with:
2929

3030
```bash
3131
pip install -U cookiecutter
3232
```
33-
or
34-
```
35-
poetry add cookiecutter
36-
```
3733

3834
Then, navigate to the directory in which you want to create your project and run:
3935

0 commit comments

Comments
 (0)