Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b63883b2 authored by Ricki Hirner's avatar Ricki Hirner
Browse files

Don't do emulator checks (because we can only use shared runners at the moment); minor lint

parent c13002d4
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -9,8 +9,9 @@ cache:

test:
  script:
    - (cd /sdk/emulator; ./emulator @test -no-audio -no-window & wait-for-emulator.sh)
    - ./gradlew check connectedCheck
#   - (cd /sdk/emulator; ./emulator @test -no-audio -no-window & wait-for-emulator.sh)
#   - ./gradlew check connectedCheck
    - ./gradlew check
  artifacts:
    paths:
      - build/outputs/lint-results-debug.html
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ android {
dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

    implementation 'org.apache.commons:commons-text:1.1'
    implementation 'org.apache.commons:commons-text:1.6'
    implementation 'commons-io:commons-io:2.6'

    // ez-vcard to parse/generate VCards
+2 −1
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ class AndroidAddressBookTest {

	@After
	fun disconnect() {
        @Suppress("DEPRECATION")
        provider.release()
    }

+1 −0
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@ class AndroidContactTest {

    @After
    fun disconnect() {
        @Suppress("DEPRECATION")
        provider.release()
    }

+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ class AndroidGroupTest {

    @After
    fun disconnect() {
        @Suppress("DEPRECATION")
        provider.release()
    }

Loading