-
Notifications
You must be signed in to change notification settings - Fork 61
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
Integration tests #345
Merged
Merged
Integration tests #345
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
1bf56b2
Introduced integration tests for JVM and MPP projects
mvicsokolova 3653759
Minor fixups
mvicsokolova 4e25e4e
WIP: minor review fixes
mvicsokolova e095162
Fix test names in MppProjectTest
mvicsokolova 4820ad1
Unit tests WIP
mvicsokolova ccdbec7
Minor review fixes
mvicsokolova f67b99d
Added unit tests for Artifact and dependency checker
mvicsokolova f3b0170
Add all the native targets to the mpp-sample project config
mvicsokolova eed2954
Composite build setup:
mvicsokolova ecde8a9
fixup
mvicsokolova 8e0fd64
Retrieve values of project properties from the global provider
mvicsokolova 8197b01
Pass versions to sample projects via version catalogs
mvicsokolova 7efebc6
Fix mavenTest problem WIP: added dependency KotlinCompile to local pu…
mvicsokolova 0f4c4e5
mavenTest depends on `atomicfu:publishToMavenLocal` to be able to che…
mvicsokolova 3fb1cce
Make functionalTest dependOn atomicfu publication
mvicsokolova 80709ea
functionalTest should depend on the global publishToMavenLocal task
mvicsokolova 7b99c56
Pass dependencies to the funcitonalTest sourceSet
mvicsokolova b74544f
Revert "Pass dependencies to the funcitonalTest sourceSet"
mvicsokolova 3890abc
Revert the last changes and depend only on atomicfu-gradle-plugin
mvicsokolova 8d31501
fixes
shanshin d00033b
atomicfu and atomicfu-transformer artifacts should also be published …
mvicsokolova 48f93df
Minor fix: add new lines at the end of all files
mvicsokolova 8118b85
Minor fix: in case the name of the group starts with a digit
mvicsokolova 2abbb53
fixup
mvicsokolova b69c7d9
Update integration-testing/examples/mpp-sample/src/commonTest/kotlin/…
mvicsokolova ea02a32
Do not cache functionalTest outputs
mvicsokolova 191ac44
Import kotlin.test.* to the test class in mpp-sample
mvicsokolova 77121f8
Add kotlin-test dependency to commonMain sourceSet
mvicsokolova f4253f9
Remove kotlin-stdlib dependency
mvicsokolova 1ba8e2b
Trying to fix unresoved kotlin.Any problem: changed the order of repo…
mvicsokolova f3af8ee
Final fix of the repo order in sample projects
mvicsokolova File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason to have these repos ordered differently in jvm- and mpp-sample projects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem with unresolved classes from
kotlin-stdlib
may've been caused by the maven local repository being corrupted by some other process, and it's priority caused gradle to search for stdlib classes there first. As gradle can not work properly withmavenLocal
, it's better not to set it first in the repo list .