File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed
integration-tests/src/test/java/com/datastax/oss/driver/core/cql
test-infra/src/main/java/com/datastax/oss/driver/categories Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 2626import com .datastax .oss .driver .api .testinfra .ccm .CustomCcmRule ;
2727import com .datastax .oss .driver .api .testinfra .session .SessionRule ;
2828import com .datastax .oss .driver .api .testinfra .session .SessionUtils ;
29- import com .datastax .oss .driver .categories .IsolatedTests ;
29+ import com .datastax .oss .driver .categories .IgnoredTests ;
3030import com .datastax .oss .driver .internal .core .context .DefaultDriverContext ;
3131import com .datastax .oss .driver .internal .core .cql .CqlPrepareAsyncProcessor ;
3232import com .datastax .oss .driver .shaded .guava .common .base .Predicates ;
4646import org .junit .rules .RuleChain ;
4747import org .junit .rules .TestRule ;
4848
49- @ Category (IsolatedTests .class )
49+ @ Category (IgnoredTests .class )
5050public class PreparedStatementCancellationIT {
5151
5252 private CustomCcmRule ccmRule = CustomCcmRule .builder ().build ();
Original file line number Diff line number Diff line change 1+ /*
2+ * Licensed to the Apache Software Foundation (ASF) under one
3+ * or more contributor license agreements. See the NOTICE file
4+ * distributed with this work for additional information
5+ * regarding copyright ownership. The ASF licenses this file
6+ * to you under the Apache License, Version 2.0 (the
7+ * "License"); you may not use this file except in compliance
8+ * with the License. You may obtain a copy of the License at
9+ *
10+ * http://www.apache.org/licenses/LICENSE-2.0
11+ *
12+ * Unless required by applicable law or agreed to in writing, software
13+ * distributed under the License is distributed on an "AS IS" BASIS,
14+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ * See the License for the specific language governing permissions and
16+ * limitations under the License.
17+ */
18+ package com .datastax .oss .driver .categories ;
19+
20+ /**
21+ * Defines a classification of tests that should be run in their own jvm fork.
22+ *
23+ * <p>This is generally because they need to set system properties.
24+ */
25+ public interface IgnoredTests {}
You can’t perform that action at this time.
0 commit comments