Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Commit cfa0cfc

Browse files
authored
Update package references and remove docs commands (#165)
1 parent 1bcd91e commit cfa0cfc

1 file changed

Lines changed: 2 additions & 13 deletions

File tree

Makefile

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ clean-test: ## remove test and coverage artifacts
4848
rm -fr htmlcov/
4949

5050
lint: ## check style with flake8
51-
flake8 pancloud tests
51+
flake8 pan_cortex_data_lake tests
5252

5353
test: ## run tests quickly with the default Python
5454
py.test
@@ -58,22 +58,11 @@ test-all: ## run tests on every Python version with tox
5858
tox
5959

6060
coverage: ## check code coverage quickly with the default Python
61-
coverage run --source pancloud -m pytest
61+
coverage run --source pan_cortex_data_lake -m pytest
6262
coverage report -m
6363
coverage html
6464
$(BROWSER) htmlcov/index.html
6565

66-
docs: ## generate Sphinx HTML documentation, including API docs
67-
rm -f docs/pancloud.rst
68-
rm -f docs/modules.rst
69-
sphinx-apidoc -o docs/ pancloud
70-
$(MAKE) -C docs clean
71-
$(MAKE) -C docs html
72-
$(BROWSER) docs/_build/html/index.html
73-
74-
servedocs: docs ## compile the docs watching for changes
75-
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
76-
7766
release: clean ## package and upload a release
7867
python setup.py sdist upload
7968
python setup.py bdist_wheel upload

0 commit comments

Comments
 (0)