Skip to content

Commit

Permalink
Refactor: changed command
Browse files Browse the repository at this point in the history
  • Loading branch information
Guri999 committed Jan 16, 2025
1 parent 9c55021 commit 3856e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:
chmod +x gradlew
for FILE in ${{ env.TEST_FILES }}; do
MODULE=$(echo "$FILE" | cut -d' ' -f1 | sed 's|\.|:|g')
TEST_CLASS="kr.co.explore.ExploreViewModelTest"
MODULE=$MODULE | sed 's|\.|:|g'
TEST_CLASS="kr.co.explore.ExploreViewModelTest"
echo "MODULE: $MODULE"
echo "TEST_CLASS: $TEST_CLASS"
echo "Running: ./gradlew :$MODULE:testDebugUnitTest --tests \"$TEST_CLASS\""
./gradlew :$MODULE:testDebugUnitTest --tests "$TEST_CLASS" --scan
./gradlew kr.co:explore:test --tests "kr.co.explore.ExploreViewModelTest"
done
- name: Test Result
Expand Down

0 comments on commit 3856e79

Please sign in to comment.