File tree 4 files changed +23
-5
lines changed
4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,3 @@ docs/_build/
55
55
56
56
# PyBuilder
57
57
target /
58
-
59
- # real config files
60
- * .conf
Original file line number Diff line number Diff line change
1
+ machine :
2
+ services :
3
+ - docker
4
+ python :
5
+ version : 2.7
6
+ environment :
7
+ COVERALLS_REPO_TOKEN : RDQpf8yX7quK5FXKN2auJpAxFNlIByLiT
8
+
9
+
10
+ dependencies :
11
+ pre :
12
+ - pip install --use-mirrors coverage python-coveralls
13
+
14
+ test :
15
+ override :
16
+ - mkdir test_dir
17
+ - cd test_dir && COVERAGE_FILE=../.coverage.init coverage run ../ctf-cli.py init
18
+ - cd test_dir && COVERAGE_FILE=../.coverage.update coverage run ../ctf-cli.py update
19
+ - cd test_dir && COVERAGE_FILE=../.coverage.run coverage run ../ctf-cli.py run
20
+ - coverage combine
21
+ - coveralls
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ ExecType=ansible
8
8
9
9
[ansible]
10
10
Host=192.168.1.1
11
- Method=ssh
11
+ Method=local
12
12
User=root
Original file line number Diff line number Diff line change 35
35
36
36
[ansible]
37
37
Host=192.168.1.1
38
- Method=ssh
38
+ Method=local
39
39
User=root
40
40
"""
41
41
You can’t perform that action at this time.
0 commit comments