File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - name : Install dependencies
1919 run : |
2020 python -m pip install --upgrade pip setuptools wheel
21- - name : Build the chaosreliably package
21+ - name : Build the package
2222 run : |
2323 make build
2424
3333 - name : Install dependencies
3434 run : |
3535 make install-dev
36- - name : Lint chaosreliably
36+ - name : Lint
3737 run : |
3838 make lint
3939
Original file line number Diff line number Diff line change 1+ .PHONY : install
2+ install :
3+ pip install --upgrade pip setuptools wheel
4+ pip install -r requirements.txt
5+
6+ .PHONY : install-dev
7+ install-dev : install
8+ pip install -r requirements-dev.txt
9+ python setup.py develop
10+
11+ .PHONY : build
12+ build :
13+ python setup.py build
14+
15+ .PHONY : lint
16+ lint :
17+ flake8 chaosreport/
18+ isort --check-only --profile black chaosreport/
19+ black --check --diff --line-length=80 chaosreport/
20+
21+ .PHONY : format
22+ format :
23+ isort --profile black chaosreport/
24+ black --line-length=80 chaosreport/
25+
26+ .PHONY : tests
27+ tests :
28+ pytest
You can’t perform that action at this time.
0 commit comments