You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ik...@apache.org on 2019/09/01 20:21:51 UTC

[fineract-cn-test] branch FINCN-114 updated (4d6c77b -> cf7d0b4)

This is an automated email from the ASF dual-hosted git repository.

ikamga pushed a change to branch FINCN-114
in repository https://gitbox.apache.org/repos/asf/fineract-cn-test.git.


    from 4d6c77b  Merge pull request #6 from myrle-krantz/develop
     new ed6df6c  Fix typo in TestEnvironment method name generateUniqueIdentifier
     new 2d07cdc  Merge pull request #8 from Izakey/develop
     new 591c5e8  FINCN-148 build with travis-ci.com and upload artifacts to Artifactory
     new 5957235  Merge pull request #9 from aasaru/artifactory
     new c6385fa  Migrate test library to from MariaDB to PostgreSQL
     new 550b75e  Adapt SQL statements and database connections to PostgreSQL
     new f8b7b22  Added password property to Test environment
     new 54dbf28  Merge branch 'FINCN-114' of https://github.com/izakey/fineract-cn-test into FINCN-114
     new 106723b  Fixed Database creation error for embedded PostgreSQL
     new a707dd7  Merge pull request #1 from ebenezergraham/FINCN-2
     new cf7d0b4  Merge pull request #7 from Izakey/FINCN-114

The 60 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 .travis.yml                                        |  31 ++++
 NOTICE.txt                                         |   2 +-
 README.md                                          |  13 +-
 build.gradle                                       |  28 +++-
 gradle/wrapper/gradle-wrapper.properties           |   4 +-
 .../fineract/cn/test/env/TestEnvironment.java      |  43 ++---
 .../test/fixture/mariadb/MariaDBInitializer.java   | 166 -------------------
 .../fixture/postgresql/PostgreSQLInitializer.java  | 182 +++++++++++++++++++++
 .../PostgreSQLTenant.java}                         |  14 +-
 .../fineract/cn/test/env/TestEnvironmentTest.java  |   6 +-
 travis.sh                                          |  71 ++++++++
 12 files changed, 348 insertions(+), 213 deletions(-)
 create mode 100644 .travis.yml
 delete mode 100644 src/main/java/org/apache/fineract/cn/test/fixture/mariadb/MariaDBInitializer.java
 create mode 100644 src/main/java/org/apache/fineract/cn/test/fixture/postgresql/PostgreSQLInitializer.java
 rename src/main/java/org/apache/fineract/cn/test/fixture/{mariadb/MariaDBTenant.java => postgresql/PostgreSQLTenant.java} (88%)
 create mode 100755 travis.sh