Skip to content

Commit e45341e

Browse files
committed
1
1 parent 924a28a commit e45341e

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

integration-tests/src/test/java/com/datastax/oss/driver/core/cql/PreparedStatementCancellationIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import com.datastax.oss.driver.api.testinfra.ccm.CustomCcmRule;
2727
import com.datastax.oss.driver.api.testinfra.session.SessionRule;
2828
import com.datastax.oss.driver.api.testinfra.session.SessionUtils;
29-
import com.datastax.oss.driver.categories.IsolatedTests;
29+
import com.datastax.oss.driver.categories.IgnoredTests;
3030
import com.datastax.oss.driver.internal.core.context.DefaultDriverContext;
3131
import com.datastax.oss.driver.internal.core.cql.CqlPrepareAsyncProcessor;
3232
import com.datastax.oss.driver.shaded.guava.common.base.Predicates;
@@ -46,7 +46,7 @@
4646
import org.junit.rules.RuleChain;
4747
import org.junit.rules.TestRule;
4848

49-
@Category(IsolatedTests.class)
49+
@Category(IgnoredTests.class)
5050
public class PreparedStatementCancellationIT {
5151

5252
private CustomCcmRule ccmRule = CustomCcmRule.builder().build();
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 {}

0 commit comments

Comments
 (0)