|
83 | 83 | } |
84 | 84 | '' |
85 | 85 | ${cabal-install}/bin/cabal v2-build ${devCabalOptions} exe:postgrest |
86 | | - ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} -f test/io/load.sql \ |
| 86 | + ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} -f test/io/fixtures/load.sql \ |
87 | 87 | ${ioTestPython}/bin/pytest --ignore=test/io/test_big_schema.py --ignore=test/io/test_replica.py -v test/io "''${_arg_leftovers[@]}" |
88 | 88 | ''; |
89 | 89 |
|
|
98 | 98 | } |
99 | 99 | '' |
100 | 100 | ${cabal-install}/bin/cabal v2-build ${devCabalOptions} exe:postgrest |
101 | | - ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} -f test/io/big_schema.sql \ |
| 101 | + ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} -f test/io/fixtures/big_schema.sql \ |
102 | 102 | ${ioTestPython}/bin/pytest -v test/io/test_big_schema.py "''${_arg_leftovers[@]}" |
103 | 103 | ''; |
104 | 104 |
|
|
113 | 113 | } |
114 | 114 | '' |
115 | 115 | ${cabal-install}/bin/cabal v2-build ${devCabalOptions} exe:postgrest |
116 | | - ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} --replica -f test/io/replica.sql \ |
| 116 | + ${cabal-install}/bin/cabal v2-exec -- ${withTools.withPg} --replica -f test/io/fixtures/replica.sql \ |
117 | 117 | ${ioTestPython}/bin/pytest -v test/io/test_replica.py "''${_arg_leftovers[@]}" |
118 | 118 | ''; |
119 | 119 |
|
@@ -164,15 +164,15 @@ let |
164 | 164 |
|
165 | 165 | # collect all tests |
166 | 166 | HPCTIXFILE="$tmpdir"/io.tix \ |
167 | | - ${withTools.withPg} -f test/io/load.sql \ |
| 167 | + ${withTools.withPg} -f test/io/fixtures/load.sql \ |
168 | 168 | ${cabal-install}/bin/cabal v2-exec ${devCabalOptions} -- ${ioTestPython}/bin/pytest --ignore=test/io/test_big_schema.py --ignore=test/io/test_replica.py -v test/io |
169 | 169 |
|
170 | 170 | HPCTIXFILE="$tmpdir"/big_schema.tix \ |
171 | | - ${withTools.withPg} -f test/io/big_schema.sql \ |
| 171 | + ${withTools.withPg} -f test/io/fixtures/big_schema.sql \ |
172 | 172 | ${cabal-install}/bin/cabal v2-exec ${devCabalOptions} -- ${ioTestPython}/bin/pytest -v test/io/test_big_schema.py |
173 | 173 |
|
174 | 174 | HPCTIXFILE="$tmpdir"/replica.tix \ |
175 | | - ${withTools.withPg} --replica -f test/io/replica.sql \ |
| 175 | + ${withTools.withPg} --replica -f test/io/fixtures/replica.sql \ |
176 | 176 | ${cabal-install}/bin/cabal v2-exec ${devCabalOptions} -- ${ioTestPython}/bin/pytest -v test/io/test_replica.py |
177 | 177 |
|
178 | 178 | HPCTIXFILE="$tmpdir"/spec.tix \ |
|
0 commit comments