Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
Remove Oracle from tests, since Travis isn't set up to initialize it
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-volkov committed Jul 7, 2016
1 parent e41e6f3 commit 28c5fcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/scala/sorm/test/MultiInstanceSuite.scala
Expand Up @@ -8,7 +8,7 @@ trait MultiInstanceSuite extends Suite with BeforeAndAfterAll with SequentialNes

def entities : Traversable[Entity]
def poolSizes = 1 :: 6 :: Nil
def dbTypes = DbType.H2 :: DbType.Mysql :: DbType.Hsqldb :: DbType.Postgres :: DbType.Oracle :: Nil
def dbTypes = DbType.H2 :: DbType.Mysql :: DbType.Hsqldb :: DbType.Postgres :: Nil
lazy val instancesAndIds = TestingInstances.instances( entities, poolSizes, dbTypes )

override protected def afterAll() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/sorm/test/TestingInstances.scala
Expand Up @@ -42,7 +42,7 @@ object TestingInstances {
def instances
( entities : Traversable[Entity],
poolSizes : Seq[Int] = 1 :: 6 :: Nil,
dbTypes : Seq[DbType] = DbType.H2 :: DbType.Mysql :: DbType.Hsqldb :: DbType.Postgres :: DbType.Oracle :: Nil )
dbTypes : Seq[DbType] = DbType.H2 :: DbType.Mysql :: DbType.Hsqldb :: DbType.Postgres :: Nil )
: Stream[(Instance, String)]
= dbTypes.toStream.flatMap(t => poolSizes.map(t -> _))
.map{ case (t, s) => instance(entities, t, s) -> (name(t) + ":" + s) }
Expand Down

0 comments on commit 28c5fcc

Please sign in to comment.