Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ PLATFORMS

DEPENDENCIES
fastlane (~> 2)
fastlane-plugin-wpmreleasetoolkit (~> 5.2)
fastlane-plugin-wpmreleasetoolkit (~> 5.4)
nokogiri
rmagick (~> 4.1)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import com.google.android.libraries.cloudtesting.screenshots.ScreenShotter;

import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.wordpress.android.BuildConfig;
import org.wordpress.android.R;
Expand Down Expand Up @@ -96,7 +95,6 @@ public static String buildScreenshotName(Screenshots screen) {
}
}

@Ignore("Ignored until there's a way to exclude tests on FTL properly, via `--test-targets` option.")
@Test
public void jPScreenshotTest() {
if (BuildConfig.IS_JETPACK_APP) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import com.google.android.libraries.cloudtesting.screenshots.ScreenShotter;

import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.wordpress.android.BuildConfig;
import org.wordpress.android.R;
Expand Down Expand Up @@ -50,7 +49,6 @@ public class WPScreenshotTest extends BaseTest {

private DemoModeEnabler mDemoModeEnabler = new DemoModeEnabler();

@Ignore("Ignored until there's a way to exclude tests on FTL properly, via `--test-targets` option.")
@Test
public void wPScreenshotTest() {
if (!BuildConfig.IS_JETPACK_APP) {
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Pluginfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ group :screenshots, optional: true do
end

# gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit.git', branch: 'trunk'
gem 'fastlane-plugin-wpmreleasetoolkit', '~> 5.2'
gem 'fastlane-plugin-wpmreleasetoolkit', '~> 5.4'
1 change: 1 addition & 0 deletions fastlane/lanes/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
version: 28,
test_apk_path: File.join(apk_dir, 'androidTest', 'wordpressVanilla', 'debug', 'org.wordpress.android-wordpress-vanilla-debug-androidTest.apk'),
apk_path: File.join(apk_dir, 'wordpressVanilla', 'debug', 'org.wordpress.android-wordpress-vanilla-debug.apk'),
test_targets: 'notPackage org.wordpress.android.ui.screenshots',
results_output_dir: File.join(PROJECT_ROOT_FOLDER, 'build', 'instrumented-tests')
)
end
Expand Down