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 434
434
</configuration >
435
435
</plugin >
436
436
437
+ <plugin >
438
+ <groupId >org.codehaus.mojo</groupId >
439
+ <artifactId >exec-maven-plugin</artifactId >
440
+ <version >1.6.0</version >
441
+ <executions >
442
+ <execution >
443
+ <phase >verify</phase >
444
+ <goals >
445
+ <goal >exec</goal >
446
+ </goals >
447
+ </execution >
448
+ </executions >
449
+ <configuration >
450
+ <executable >pep8</executable >
451
+ <arguments >
452
+ <argument >-v</argument >
453
+ <argument >--exclude=filelock.py,test_command.py</argument >
454
+ <argument >${project.basedir} /../tools/sync</argument >
455
+ </arguments >
456
+ </configuration >
457
+ </plugin >
437
458
438
459
</plugins >
439
460
</build >
You can’t perform that action at this time.
0 commit comments