Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Makefile 670 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. init:
  2. pip install pipenv --upgrade
  3. pipenv install --dev --skip-lock
  4. isort:
  5. pipenv run isort -rc causalimpact
  6. pipenv run isort -rc tests
  7. isort-check:
  8. pipenv run isort -rc -c causalimpact
  9. pipenv run isort -rc -c tests
  10. flake8:
  11. pipenv run flake8 causalimpact
  12. coverage:
  13. pipenv run py.test -p no:warnings --cov-config .coveragerc --cov-report html --cov-report term --cov-report xml --cov=causalimpact
  14. test:
  15. pipenv run py.test
  16. publish:
  17. pip install -U setuptools
  18. pip install -U wheel
  19. pip install 'twine>=1.5.0'
  20. python setup.py sdist bdist_wheel
  21. twine upload dist/*
  22. rm -fr build dist .egg pycausalimpact.egg-info
  23. .PHONY: flake8 isort coverage test publish
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...