diff options
author | 2021-09-22 08:53:31 -0400 | |
---|---|---|
committer | 2021-09-22 09:06:56 -0400 | |
commit | 07f1e632513eddfb04815559a87f97fbeb75584c (patch) | |
tree | 3ae6b537bed1bc27846a222802a78a83a52260bd /readme.md | |
parent | 047c4e1b9d10adba497c341cb6cdeec8a7d289a7 (diff) |
Fix integration tests
- Fixed the issue regarding docker image dependencies https://gerrit.onap.org/r/c/aai/resources/+/123653
- Cleaned up pom file
Issue-ID: AAI-3324
Signed-off-by: Mohammad Hosnidokht <mohammad.hosnidokht@yoppworks.com>
Change-Id: I0e068e33756bd0cb0e66a7e19594070ab821c4ef
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -50,9 +50,10 @@ The REST interface logs can be found under /opt/app/aai-resources/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`. +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` to be executed, and can be run along with all other unit tests with `mvn integration-test` +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` |