mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-03-11 22:31:42 +01:00
Failing test + change to runTests
This commit is contained in:
parent
0b19adcc74
commit
c152817aa1
@ -12,13 +12,6 @@ allprojects {
|
|||||||
|
|
||||||
group "com.djrapitops"
|
group "com.djrapitops"
|
||||||
version "4.6.0-SNAPSHOT"
|
version "4.6.0-SNAPSHOT"
|
||||||
|
|
||||||
test {
|
|
||||||
testLogging {
|
|
||||||
events "passed", "failed"
|
|
||||||
exceptionFormat "full"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
|
@ -31,6 +31,11 @@ public class SessionCacheTest {
|
|||||||
SessionCache.clear();
|
SessionCache.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void failingTest() {
|
||||||
|
assertTrue(false);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testAtomity() {
|
public void testAtomity() {
|
||||||
Optional<Session> cachedSession = SessionCache.getCachedSession(uuid);
|
Optional<Session> cachedSession = SessionCache.getCachedSession(uuid);
|
||||||
|
@ -5,5 +5,6 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
||||||
|
gradle test
|
||||||
gradle sonarqube
|
gradle sonarqube
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user