mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
Merge branch 'jjs/prebuilds' of https://github.com/coder/coder into jjs/prebuilds
This commit is contained in:
@ -19,6 +19,10 @@ import (
|
||||
)
|
||||
|
||||
func TestNoReconciliationActionsIfNoPresets(t *testing.T) {
|
||||
if !dbtestutil.WillUsePostgres() {
|
||||
t.Skip("This test requires postgres")
|
||||
}
|
||||
|
||||
// Scenario: No reconciliation actions are taken if there are no presets
|
||||
t.Parallel()
|
||||
|
||||
@ -59,6 +63,10 @@ func TestNoReconciliationActionsIfNoPresets(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestNoReconciliationActionsIfNoPrebuilds(t *testing.T) {
|
||||
if !dbtestutil.WillUsePostgres() {
|
||||
t.Skip("This test requires postgres")
|
||||
}
|
||||
|
||||
// Scenario: No reconciliation actions are taken if there are no prebuilds
|
||||
t.Parallel()
|
||||
|
||||
@ -232,6 +240,10 @@ func setupTestDBPrebuild(
|
||||
}
|
||||
|
||||
func TestActiveTemplateVersionPrebuilds(t *testing.T) {
|
||||
if !dbtestutil.WillUsePostgres() {
|
||||
t.Skip("This test requires postgres")
|
||||
}
|
||||
|
||||
t.Parallel()
|
||||
|
||||
type testCase struct {
|
||||
|
Reference in New Issue
Block a user