summaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorM.Hosnidokht <mohammad.hosnidokht@yoppworks.com>2021-09-22 10:22:21 -0400
committerM.Hosnidokht <mohammad.hosnidokht@yoppworks.com>2021-09-22 10:22:31 -0400
commitc0c35e03c1dfc6f734f6acb0895f25a3e0790424 (patch)
treea82df1f3f6ddd132efdf203c945ca60b9fc7162d /readme.md
parente667d02a698def2029c80ccddd8392b94674e061 (diff)
Fix integration tests
- Fixed the issue regarding docker image dependencies https://gerrit.onap.org/r/c/aai/traversal/+/123659 - Cleaned up pom file Issue-ID: AAI-3325 Signed-off-by: Mohammad Hosnidokht <mohammad.hosnidokht@yoppworks.com> Change-Id: I3a69e5881c2e7a3016efec491acb527f86077746
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index 9e44811..87c5a0a 100644
--- a/readme.md
+++ b/readme.md
@@ -50,9 +50,8 @@ The REST interface logs can be found under /opt/app/aai-traversal/logs/rest.
Any RESTful client such as SoapUI may be configured and setup to use for testing AAI requests.
# Integration Tests
-In order to isolate integration tests from unit tests, `it` directory has been created under `src`.
-
-As a naming convention, All integration test classes should end with `IT` to be executed, and can be run along with all other unit tests with `mvn integration-test`
-
+Integration tests are located in `it` directory, and disabled by default in the pom file:
+`<skipITs>true</skipITs>`
+As a naming convention, All integration test classes should end with `IT`, and will be executed by changing the `skipITs` value in pom file, or through the command line `-DskipITs=false`