Skip to content

Commit d26aca9

Browse files
authored
Merge pull request #121 from datastax/issue/CDM-34
Issue/cdm 34
2 parents 5d59325 + eba1718 commit d26aca9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1295
-448
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ target/
55
dependency-reduced-pom.xml
66
.idea/*
77
cassandra-data-migrator.iml
8+
SIT/local

SIT/Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
all: setup test_smoke_cmd test_features_cmd env_teardown
2+
all: setup test_smoke_cmd test_regression_cmd test_features_cmd env_teardown
33

44
setup: build env_setup
55

@@ -13,10 +13,20 @@ test_smoke: reset test_smoke_cmd
1313
test_smoke_cmd:
1414
./test.sh -p smoke
1515

16+
test_regression: reset test_regression_cmd
17+
test_regression_cmd:
18+
./test.sh -p regression
19+
1620
test_features: reset test_features_cmd
1721
test_features_cmd:
1822
./test.sh -p features
1923

24+
# Local tests are not included in automated tests, but provide a means
25+
# to use the test harness to validate project-specific work
26+
test_local: reset test_local_cmd
27+
test_local_cmd:
28+
./test.sh -p local
29+
2030
env_setup:
2131
chmod -R 777 ./*.sh
2232
./environment.sh -m setup -j ../target/cassandra-data-migrator*.jar

0 commit comments

Comments
 (0)