Skip to content

Commit e7f1e6c

Browse files
authored
Merge pull request #1035 from jenkinsci/skip-ui-tests
Enable UI tests with profile CI
2 parents 1775f22 + 5004485 commit e7f1e6c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ This Git Forensics Jenkins plugin mines and analyzes data from a Git repository.
1212
- **Blames**: Provides an API for `git blame` to show in which Git revisions the lines of a file
1313
have been modified by what authors. This information can be used to discover the original commit
1414
that is the origin for a piece of problematic code.
15-
- **File statistics**: Incrementally collects global commit statistics for all repository files in the style of
16-
[Code as a Crime Scene](https://www.adamtornhill.com/articles/crimescene/codeascrimescene.htm)
15+
- **File statistics**: Incrementally collects global commit statistics for all repository files in the style of Code as a Crime Scene
1716
\[Adam Tornhill, November 2013\]. This includes:
1817
- commits count
1918
- different authors count
@@ -37,7 +36,7 @@ This Git Forensics Jenkins plugin mines and analyzes data from a Git repository.
3736
## File statistics
3837

3938
The Git Forensics plugin will collect commit statistics for all repository files in the style of
40-
[Code as a Crime Scene](https://www.adamtornhill.com/articles/crimescene/codeascrimescene.htm)
39+
Code as a Crime Scene
4140
[Adam Tornhill, November 2013] if you enable the post build step *Mine SCM repository*. If you are using a pipeline,
4241
then you can start the repository mining using the `mineRepository` step. This step has an `scm` parameter value that
4342
can be used to filter the SCM(s) to use. Please

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
<modules>
2020
<module>plugin</module>
21-
<module>ui-tests</module>
2221
</modules>
2322

2423
<properties>
@@ -52,9 +51,10 @@
5251
</build>
5352
<profiles>
5453
<profile>
55-
<id>quick-build</id>
54+
<id>ci</id>
5655
<modules>
5756
<module>plugin</module>
57+
<module>ui-tests</module>
5858
</modules>
5959
</profile>
6060
</profiles>

0 commit comments

Comments
 (0)