File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,15 @@ matrix:
18
18
jobs :
19
19
include :
20
20
- stage : release-test
21
- script : RELEASE_SKIP=head PYVER=2.7 ./release-test.sh && RELEASE_SKIP=head PYVER=3 ./release-test.sh
21
+ python : 2.7
22
+ script : RELEASE_SKIP=head PYVER=2.7 ./release-test.sh
23
+ - python : 3.4
24
+ script : RELEASE_SKIP=head PYVER=3 ./release-test.sh
25
+ - python : 3.5
26
+ script : RELEASE_SKIP=head PYVER=3 ./release-test.sh
27
+ - python : 3.6
28
+ script : RELEASE_SKIP=head PYVER=3 ./release-test.sh
29
+
22
30
install :
23
31
- pip2 install tox-travis || pip3 install tox-travis
24
32
script : tox
Original file line number Diff line number Diff line change 5
5
ERROR_TOOL = "return-1.cwl"
6
6
7
7
8
- def main ():
8
+ def main (): # type: ()->int
9
9
parser = argparse .ArgumentParser ()
10
10
parser .add_argument ("processfile" )
11
11
parser .add_argument ("jobfile" )
@@ -24,4 +24,4 @@ def main():
24
24
25
25
26
26
if __name__ == "__main__" :
27
- main ()
27
+ main ()
Original file line number Diff line number Diff line change @@ -15,4 +15,3 @@ def test_arg(self):
15
15
16
16
if __name__ == '__main__' :
17
17
unittest .main ()
18
-
You can’t perform that action at this time.
0 commit comments