Skip to content

Commit 9243671

Browse files
committed
✏️ (Makefile) Fix renaming typos
1 parent 7f0ffec commit 9243671

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
all: clean install test
22

33
api:
4-
LEAKRFC_ARCHIVE__URI=./tests/fixtures/archive DEBUG=1 uvicorn ftm-datalake.api:app --reload --port 5000
4+
LEAKRFC_ARCHIVE__URI=./tests/fixtures/archive DEBUG=1 uvicorn ftm_datalake.api:app --reload --port 5000
55

66
install:
77
poetry install --with dev --all-extras
88

99
lint:
10-
poetry run flake8 ftm-datalake --count --select=E9,F63,F7,F82 --show-source --statistics
11-
poetry run flake8 ftm-datalake --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
10+
poetry run flake8 ftm_datalake --count --select=E9,F63,F7,F82 --show-source --statistics
11+
poetry run flake8 ftm_datalake --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
1212

1313
pre-commit:
1414
poetry run pre-commit install
1515
poetry run pre-commit run -a
1616

1717
typecheck:
18-
poetry run mypy --strict ftm-datalake
18+
poetry run mypy --strict ftm_datalake
1919

2020
test:
21-
poetry run pytest -v --capture=sys --cov=ftm-datalake --cov-report lcov
21+
poetry run pytest -v --capture=sys --cov=ftm_datalake --cov-report lcov
2222

2323
build:
2424
poetry run build

0 commit comments

Comments
 (0)