Skip to content

Commit 0eabd2c

Browse files
committed
fixed tests
1 parent 218c6d5 commit 0eabd2c

File tree

7 files changed

+895
-877
lines changed

7 files changed

+895
-877
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ jobs:
158158
with:
159159
maven-version: 3.6.3
160160

161-
162161
- name: Cache maven resources
163162
uses: actions/cache@v4
164163
env:

.utility/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ else
1212
wget -q https://archive.apache.org/dist/hadoop/common/hadoop-3.1.2/hadoop-3.1.2.tar.gz
1313
tar -xzf ./hadoop-3.1.2.tar.gz hadoop-3.1.2/lib/native/
1414
export LD_LIBRARY_PATH=$(pwd)/hadoop-3.1.2/lib/native/
15-
mvn -q -B verify -am -pl test -Dtest=SkipUnitTests -Dfindbugs.skip -Dspotbugs.skip -DfailIfNoTests=false -P $MAVEN_PROFILES
15+
mvn -q -B verify -am -pl test -Dtest=SkipUnitTests -Dfindbugs.skip -Dspotbugs.skip -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false -P $MAVEN_PROFILES
1616
else
1717
echo -e "Running unit tests only w/ verify...\n"
1818
mvn -q -B verify -Dformatter.action=validate -P $MAVEN_PROFILES

extensions/cli/landsat8/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<!-- to maintain only one download of GDAL, re-use the IT build directory -->
1212
<gdal.dir>${project.basedir}/../../../test/target/temp/gdal</gdal.dir>
1313
<tools.scope>compile</tools.scope>
14+
<skipTests>true</skipTests>
1415
</properties>
1516

1617
<artifactId>geowave-cli-landsat8</artifactId>
@@ -57,7 +58,7 @@
5758
<id>prepare-tests</id>
5859
<activation>
5960
<property>
60-
<name>!skipTests</name>
61+
<name>installGdal</name>
6162
</property>
6263
</activation>
6364
<build>

extensions/cli/sentinel2/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<!-- to maintain only one download of GDAL, re-use the IT build directory -->
1212
<gdal.dir>${project.basedir}/../../../test/target/temp/gdal</gdal.dir>
1313
<tools.scope>compile</tools.scope>
14+
<skipTests>true</skipTests>
1415
</properties>
1516

1617
<artifactId>geowave-cli-sentinel2</artifactId>
@@ -56,7 +57,7 @@
5657
<id>prepare-tests</id>
5758
<activation>
5859
<property>
59-
<name>!skipTests</name>
60+
<name>installGdal</name>
6061
</property>
6162
</activation>
6263
<build>

0 commit comments

Comments
 (0)