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 720 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
31
32
33
34
35
36
37
38
39
  1. isort:
  2. pip install -U isort
  3. isort -rc causalimpact
  4. isort -rc tests
  5. isort-check:
  6. pip install -U isort
  7. isort -ns __init__.py -rc -c -df -p causalimpact causalimpact tests
  8. flake8:
  9. pip install -U flake8
  10. flake8 causalimpact tests
  11. coverage:
  12. python setup.py test --coverage=true
  13. coverage-html:
  14. python setup.py test --coverage=true --html=true
  15. test:
  16. python setup.py test
  17. tox:
  18. pip install -U tox
  19. tox -p all
  20. pytest:
  21. pip install -e ".[testing]"
  22. pytest
  23. publish:
  24. pip install -U setuptools
  25. pip install -U wheel
  26. pip install 'twine>=1.5.0'
  27. python setup.py sdist bdist_wheel
  28. twine upload dist/*
  29. rm -fr build dist .egg pycausalimpact.egg-info
  30. .PHONY: flake8 isort coverage test publish isort-check tox pytest
Tip!

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

Comments

Loading...