当 运行 Robotium 在 circle-ci 上测试时测试失败

Test FAILED when running Robotium tests on circle-ci

这是我的 circleci config file:

# Build configuration file for Circle CI
# needs to be named `circle.yml` and should be in the top level dir of the repo

general:
  artifacts:
    - "~/build_output.zip" # Save APK's, Lint Results, and Test Results

machine:
  environment:
    ANDROID_HOME: /usr/local/android-sdk-linux
  java:
    version: oraclejdk8

dependencies:
  cache_directories:
    - ~/.android
    - ~/android
  override:
    - (echo "Downloading Android SDK v24...")
    - (source environmentSetup.sh && getAndroidSDK)

test:
  override:
    # start the emulator
    - emulator -avd circleci-android22 -no-audio -no-window:
        background: true
        parallel: true
    # wait for it to have booted
    - circle-android wait-for-boot
    # unlock the emulator screen
    - sleep 30
    - adb shell input keyevent 82
    # run tests  against the emulator.
    - ./gradlew connectedAndroidTest
    # run jUnit tests
    - ./gradlew test
    # copy the build outputs to artifacts
    - cp -r app/build/outputs $CIRCLE_ARTIFACTS
    # copy the test results to the test results directory.
    - cp -r app/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS

这是一个test method:

@Test
public void test_ListRepos_ClickOnOneRepo_DisplayDetailWithOnlyThisRepo() {
    Given:
    {
        final String lsOneRepoJSONData = mLocalifyClient.localify().loadRawFile(fr.guddy.androidstarter.test.R.raw.repos_octocat);
        final MockResponse loMockResponseWithOneRepo = new MockResponse().setResponseCode(200);
        loMockResponseWithOneRepo.setBody(lsOneRepoJSONData);
        mMockWebServer.enqueue(loMockResponseWithOneRepo);
        try {
            mMockWebServer.start(4000);
        } catch (@NonNull final Exception loException) {
            loException.printStackTrace();
        }
        mActivity = mActivityTestRule.launchActivity(null);
    }

    When:
    {
        mSolo.clickOnText("git-consortium");
    }

    Then:
    {
        mSolo.assertCurrentActivity("should be on ActivityRepoDetail", ActivityRepoDetail.class);
        final boolean lbFoundTheRepo = mSolo.waitForText("This repo is for demonstration purposes only.", 1, 5000L, true);
        assertThat(lbFoundTheRepo).isTrue();
    }
}

我在以下构建中遇到测试失败:https://circleci.com/gh/RoRoche/AndroidStarter/tree/master

运行 在本地执行相同的命令,我得到以下结果:

junit.framework.AssertionFailedError:
[
GIVEN A single GitHub repo from the API
WHEN Click on its name and on the back button
THEN It should display the list
]
[
Message: Text string: 'git-consortium' is not found!
]
at junit.framework.Assert.fail(Assert.java:50)
at com.robotium.solo.Clicker.clickOnText(Clicker.java:451)
at com.robotium.solo.Solo.clickOnText(Solo.java:1502)
at fr.guddy.androidstarter.tests.ui.TestActivityRepoList.test_DetailRepos_ClickOnBack_DisplayListRepos(TestActivityRepoList.java:156)

知道如何配置我的 circleci 构建以使其通过吗? 提前致谢。

在您失败的构建之一的顶部查看,您会看到以下消息:"Your build has exceeded the memory limit of 4G on 1 container."。

您的构建 运行 内存不足。如果可能,我会尝试减少使用的内存量 (https://circleci.com/docs/oom/)。如果这是一个障碍(有时 Android 会发生这种情况),我会联系 CircleCI 支持人员,看看他们是否可以帮助您。