File tree 5 files changed +10
-36
lines changed
5 files changed +10
-36
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,17 @@ jobs:
42
42
cd lib/poseidon_cli && poetry run black . --check && cd ../../
43
43
cd lib/poseidon_core && poetry run black . --check && cd ../../
44
44
45
+ - name : Code Quality - Pytype
46
+ run : |
47
+ cd lib/poseidon_api && poetry run pytype && cd ../../
48
+ cd lib/poseidon_cli && poetry run pytype && cd ../../
49
+ cd lib/poseidon_core && poetry run pytype && cd ../../
50
+
45
51
- name : Code Quality - Pylint
46
52
run : |
47
- cd lib/poseidon_api && poetry run pylint . && cd ../../
48
- cd lib/poseidon_cli && poetry run pylint . && cd ../../
49
- cd lib/poseidon_core && poetry run pylint . && cd ../../
53
+ cd lib/poseidon_api && poetry run pylint poseidon_api/ && cd ../../
54
+ cd lib/poseidon_cli && poetry run pylint poseidon_cli/ && cd ../../
55
+ cd lib/poseidon_core && poetry run pylint poseidon_core/ && cd ../../
50
56
51
57
- name : Test with pytest
52
58
run : |
Original file line number Diff line number Diff line change 18
18
shellcheck() { "shellcheck-stable/shellcheck" "$@"; } && \
19
19
shellcheck --version && \
20
20
/bin/bash --version && /bin/bash -n bin/poseidon && shellcheck -x -e SC2016 -e SC2119 -e SC2129 -e SC2001 -e SC2038 -e SC2044 bin/poseidon
21
- - name : docker_test
22
- run : make run_tests
23
21
- name : e2e_test
24
22
run : |
25
23
docker system prune -a -f --volumes && pip3 install -U docker-compose && ./tests/test_e2e.sh
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,8 +5,4 @@ VERSION=$(shell cat VERSION)
5
5
build_poseidon :
6
6
docker build -t $(TAG ) .
7
7
8
- run_tests : build_poseidon
9
- docker build -f ./Dockerfile.test -t $(TAG ) -test .
10
- docker run --rm -v /var/run/docker.sock:/var/run/docker.sock $(TAG ) -test
11
-
12
- .PHONY : build_poseidon run_tests
8
+ .PHONY : build_poseidon
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments