File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 8
8
- $HOME/.m2
9
9
before_install :
10
10
- sudo apt-get update -qq
11
- - sudo apt-get install -qq exuberant-ctags cvs git mercurial cssc bzr subversion monotone rcs
11
+ - sudo apt-get install -qq exuberant-ctags cvs git mercurial cssc bzr subversion monotone rcs pep8
12
12
- sudo ./scripts/install-bitkeeper.sh
13
+ install : true
13
14
14
15
before_script :
15
16
- bk --version
26
27
# via the "travis encrypt" command using the project repo's public key
27
28
- secure : " O_cda5pWDBAP-O3_0nG5RQ"
28
29
29
- script : " mvn -DskipTests=true -Dmaven.javadoc.skip=false -B -V compile && cd opengrok-indexer && mvn javadoc:javadoc && cd ../opengrok-web && mvn javadoc:javadoc && cd .. && mvn test -B"
30
+ script : " mvn -DskipTests=true -Dmaven.javadoc.skip=false -B -V compile && cd opengrok-indexer && mvn javadoc:javadoc && cd ../opengrok-web && mvn javadoc:javadoc && cd .. && mvn verify -B"
30
31
31
32
addons :
32
33
coverity_scan :
Original file line number Diff line number Diff line change 441
441
</configuration >
442
442
</plugin >
443
443
444
+ <plugin >
445
+ <groupId >org.codehaus.mojo</groupId >
446
+ <artifactId >exec-maven-plugin</artifactId >
447
+ <version >1.6.0</version >
448
+ <executions >
449
+ <execution >
450
+ <phase >verify</phase >
451
+ <goals >
452
+ <goal >exec</goal >
453
+ </goals >
454
+ </execution >
455
+ </executions >
456
+ <configuration >
457
+ <executable >pep8</executable >
458
+ <arguments >
459
+ <argument >-v</argument >
460
+ <argument >--exclude=filelock.py,test_command.py</argument >
461
+ <argument >${project.basedir} /../tools/sync</argument >
462
+ </arguments >
463
+ </configuration >
464
+ </plugin >
444
465
445
466
</plugins >
446
467
</build >
You can’t perform that action at this time.
0 commit comments