@@ -19,7 +19,7 @@ information: Portions Copyright [yyyy] [name of copyright owner]
19
19
CDDL HEADER END
20
20
21
21
Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
22
- Portions Copyright (c) 2017-2018, Chris Fraire <[email protected] >.
22
+ Portions Copyright (c) 2017-2018, 2020, Chris Fraire <[email protected] >.
23
23
24
24
-->
25
25
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
@@ -45,6 +45,15 @@ Portions Copyright (c) 2017-2018, Chris Fraire <
[email protected] >.
45
45
</properties >
46
46
47
47
<profiles >
48
+ <profile >
49
+ <id >default</id >
50
+ <activation >
51
+ <activeByDefault >true</activeByDefault >
52
+ </activation >
53
+ <properties >
54
+ <skipPythonTests >false</skipPythonTests >
55
+ </properties >
56
+ </profile >
48
57
<profile >
49
58
<id >Windows python environment</id >
50
59
<activation >
@@ -57,6 +66,28 @@ Portions Copyright (c) 2017-2018, Chris Fraire <
[email protected] >.
57
66
<python .environment>${project.build.directory} /env/Scripts</python .environment>
58
67
</properties >
59
68
</profile >
69
+ <profile >
70
+ <id >skipTestsRun</id >
71
+ <activation >
72
+ <property >
73
+ <name >skipTests</name >
74
+ </property >
75
+ </activation >
76
+ <properties >
77
+ <skipPythonTests >true</skipPythonTests >
78
+ </properties >
79
+ </profile >
80
+ <profile >
81
+ <id >specificTestRun</id >
82
+ <activation >
83
+ <property >
84
+ <name >test</name >
85
+ </property >
86
+ </activation >
87
+ <properties >
88
+ <skipPythonTests >true</skipPythonTests >
89
+ </properties >
90
+ </profile >
60
91
</profiles >
61
92
62
93
<build >
@@ -216,6 +247,7 @@ Portions Copyright (c) 2017-2018, Chris Fraire <
[email protected] >.
216
247
<argument >setup.py</argument >
217
248
<argument >install</argument >
218
249
</arguments >
250
+ <skip >${skipPythonTests} </skip >
219
251
</configuration >
220
252
<phase >test</phase >
221
253
<goals >
@@ -289,7 +321,7 @@ Portions Copyright (c) 2017-2018, Chris Fraire <
[email protected] >.
289
321
<argument >setup.py</argument >
290
322
<argument >test</argument >
291
323
</arguments >
292
- <skip >${skipTests } </skip >
324
+ <skip >${skipPythonTests } </skip >
293
325
</configuration >
294
326
<phase >test</phase >
295
327
<goals >
0 commit comments