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 src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<depends>com.intellij.modules.platform</depends>

<extensions defaultExtensionNs="com.intellij">
<notificationGroup id="SDK changed notification"
<notificationGroup id="Python SDK change"
displayType="BALLOON"/>
<projectViewNodeDecorator implementation="com.github.pyvenvmanage.VenvProjectViewNodeDecorator"/>
</extensions>
Expand Down
12 changes: 2 additions & 10 deletions src/test/kotlin/com/github/pyvenvmanage/UITest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,6 @@ class UITest {
@AfterAll
@JvmStatic
fun cleanUp() {
// CommonSteps(remoteRobot).closeProject()
// // remove the test project from recent
// remoteRobot.welcomeFrame {
// findText("demo").click(MouseButton.RIGHT_BUTTON)
// remoteRobot.actionMenuItem("Remove from Recent Projects…").click()
// button("Remove").click()
// }
// tmpDir.toFile().deleteRecursively()
}
}

Expand All @@ -114,7 +106,7 @@ class UITest {
with(projectViewTree) {
findText("ve").click(MouseButton.RIGHT_BUTTON)
remoteRobot.actionMenuItem("Set as Project Interpreter").click()
// findText("Updated SDK for project demo to:")
findText("Updated SDK for project demo to:")
// wait for indexing to finish
waitFor(ofMinutes(1)) { isDumbMode().not() }
}
Expand All @@ -127,7 +119,7 @@ class UITest {
with(projectViewTree) {
findText("ve").click(MouseButton.RIGHT_BUTTON)
remoteRobot.actionMenuItem("Set as Module Interpreter").click()
// findText("Updated SDK for module demo to:")
findText("Updated SDK for module demo to:")
// wait for indexing to finish
waitFor(ofMinutes(1)) { isDumbMode().not() }
}
Expand Down