Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add @stable virtual dist-tag when installing test-framework package #101

Merged
merged 2 commits into from
Oct 3, 2024
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 .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
run: |
npm install -g openupm-cli
openupm add -f com.unity.test-framework@1.4.5
openupm add -f com.unity.test-framework@stable
openupm add -f com.unity.testtools.codecoverage
openupm add -f com.cysharp.unitask
working-directory: ${{ env.CREATED_PROJECT_PATH }}
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ create_project:
-createProject $(PROJECT_HOME) \
-batchmode \
-quit
touch UnityProject~/Assets/.gitkeep
openupm -c $(PROJECT_HOME) add -f com.unity.test-framework@1.4.5
openupm -c $(PROJECT_HOME) add -f com.unity.testtools.codecoverage
openupm -c $(PROJECT_HOME) add -f com.cysharp.unitask
openupm -c $(PROJECT_HOME) add -ft $(PACKAGE_NAME)@file:../../
touch $(PROJECT_HOME)/Assets/.gitkeep
openupm add -c $(PROJECT_HOME) -f com.unity.test-framework@stable
openupm add -c $(PROJECT_HOME) -f com.unity.testtools.codecoverage
openupm add -c $(PROJECT_HOME) -f com.cysharp.unitask
openupm add -c $(PROJECT_HOME) -ft $(PACKAGE_NAME)@file:../../

.PHONY: remove_project
remove_project:
Expand Down