Skip to content

Commit

Permalink
[#13] test lane 전체 테스트 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cgpathos committed May 8, 2024
1 parent 72543fc commit 76962aa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
8 changes: 7 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ default_platform(:android)
platform :android do
desc "Runs all the tests"
lane :test do |options|
TASK =
if options[:module] = ""
"test"
else
":#{options[:module]}:test"
end
MODULE = ":#{options[:module]}:" || ""
gradle(task: "#{MODULE}test")
gradle(tasks: ["clean", TASK])
end

desc "Check Build app file"
Expand Down
8 changes: 8 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do

Runs all the tests

### android build

```sh
[bundle exec] fastlane android build
```

Check Build app file

### android beta

```sh
Expand Down
4 changes: 2 additions & 2 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@



<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000196">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000213">

</testcase>


<testcase classname="fastlane.lanes" name="1: :data:test" time="14.400112">
<testcase classname="fastlane.lanes" name="1: clean test" time="12.17618">

</testcase>

Expand Down

0 comments on commit 76962aa

Please sign in to comment.