mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 23:31:05 +07:00
Replace Gradle-based local Python compilation with prebuilt standalone distributions downloaded from JetBrains cache redirector. Introduces provider-based architecture for test environment management with improved JUnit4/JUnit5 integration. Key changes: - Remove setup-test-environment Gradle module and build infrastructure - Introduce python-test-env modules (core, common, plain, conda, uv, junit4, junit5) - Implement PyEnvironmentProvider/PyEnvironmentSpec abstractions - Add JUnit5 annotations (@RequiresPoetry, @RequiresUv, @RunOnEnvironments) - Implement caching system with PyEnvDownloadCache and variant-specific directories - Predefined environments like: VANILLA_2_7, VANILLA_3_11, VANILLA_3_12, VANILLA_3_13 Benefits: - Faster test environment provisioning (no compilation required) - Consistent cross-platform behavior with identical Python builds - Improved reliability by eliminating platform-specific build failures - Better test framework integration with parameterized environment testing GitOrigin-RevId: a44957c3014f9e1fc7dbec347a7e245675f999c1
17 lines
903 B
XML
17 lines
903 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<module type="JAVA_MODULE" version="4">
|
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
<exclude-output />
|
|
<content url="file://$MODULE_DIR$">
|
|
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-test-resource" />
|
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="true" />
|
|
</content>
|
|
<orderEntry type="inheritedJdk" />
|
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
<orderEntry type="library" name="jetbrains-annotations" level="project" />
|
|
<orderEntry type="library" scope="TEST" name="JUnit4" level="project" />
|
|
<orderEntry type="module" module-name="intellij.python.test.env.core" />
|
|
<orderEntry type="library" name="kotlin-stdlib" level="project" />
|
|
<orderEntry type="module" module-name="intellij.python.test.env.common" scope="TEST" />
|
|
</component>
|
|
</module> |