Skip to content

Commit

Permalink
Adjusted dependencies to allow test to use Kepler SUnit Extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabacman committed Jan 30, 2024
1 parent 476a1d7 commit 03ed73d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/BaselineOfSagan/BaselineOfSagan.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ BaselineOfSagan >> setUpDependencies: spec [

spec
baseline: 'Kepler' with: [ spec repository: 'github://ba-st/Kepler:v6/source' ];
project: 'Kepler-Core' copyFrom: 'Kepler' with: [ spec loads: 'Core' ].
project: 'Kepler-Core' copyFrom: 'Kepler' with: [ spec loads: 'Core' ];
project: 'Kepler-SUnit' copyFrom: 'Kepler' with: [ spec loads: 'Dependent-SUnit-Extensions' ].

spec
baseline: 'ObjectPool' with: [ spec repository: 'github://pharo-ide/ObjectPool:v1.0.3' ];
Expand Down Expand Up @@ -96,7 +97,7 @@ BaselineOfSagan >> setUpPackages: spec [
spec requires: #( 'Glorp-Core' 'Core' 'ObjectPool-Core' 'Bell-Core' 'Hyperspace-Deployment' ) ];
group: 'RDBMS' with: #( 'Sagan-RDBMS' ).

spec package: 'Sagan-Kepler-Tests' with: [ spec requires: #( 'Sagan-Kepler' ) ].
spec package: 'Sagan-Kepler-Tests' with: [ spec requires: #( 'Sagan-Kepler' 'Kepler-SUnit' ) ].

spec group: 'PostgreSQL' with: #( 'RDBMS' 'Glorp P3' ).
spec group: 'SQLite' with: #( 'RDBMS' 'Glorp SQLite3' ).
Expand Down

0 comments on commit 03ed73d

Please sign in to comment.