blob: dd66800bdcea845d2828f75de75ff7e786027468 [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.universalTests.PyUniversalTestsConfigurationProducer.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);
}