1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-04-15 17:15:43 +02:00

Fix the path to python

This commit is contained in:
Alex Plate 2025-03-14 16:20:23 +02:00
parent 186feed8af
commit 60767fa908
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -74,7 +74,7 @@ class PyCharmTest {
waitFor(duration = Duration.ofSeconds(30)) {
// Waiting till the SDK will be detected by PyCharm
this@startNewProject.findAll<ComponentFixture>(byXpath("//div[@class='SimpleColoredComponent']"))
.any { it.hasText { text -> text.text.contains("/usr/bin/python3") } }
.any { it.hasText { text -> text.text.contains("/usr/local/bin/python3") } }
}
button("Create").click()
}