blob: 27468aaddd1a0192c5be6aeb8261adaede3f20e4 [file] [log] [blame]
package com.google.idea.sdkcompat.python;
import com.google.common.collect.ImmutableList;
/** List of python configuration producers for a given plugin version. */
public class PyConfigurationProducersList {
public static final ImmutableList<Class<?>> PRODUCERS_TO_SUPPRESS =
ImmutableList.of(
com.jetbrains.python.run.PythonRunConfigurationProducer.class,
com.jetbrains.python.testing.attest.PythonAtTestConfigurationProducer.class,
com.jetbrains.python.testing.nosetest.PythonNoseTestConfigurationProducer.class,
com.jetbrains.python.testing.doctest.PythonDocTestConfigurationProducer.class,
com.jetbrains.python.testing.pytest.PyTestConfigurationProducer.class,
com.jetbrains.python.testing.unittest.PythonUnitTestConfigurationProducer.class);
}