File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Nightly Acceptance Tests
2
+
3
+ on :
4
+ schedule :
5
+ # Will run at 00:00 every day
6
+ - cron : ' 0 0 * * *'
7
+
8
+ jobs :
9
+ nightly :
10
+ strategy :
11
+ matrix :
12
+ products :
13
+ - Account
14
+ - Baremetal
15
+ - Instance
16
+ - K8S
17
+ - Lb
18
+ - Object
19
+ - Rdb
20
+ - Registry
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - name : Install Go
24
+ uses : actions/setup-go@v2
25
+ with :
26
+ go-version : 1.15.1
27
+ - name : Checkout
28
+ uses : actions/checkout@v2
29
+ - name : Run Acceptance Tests
30
+ run : go test -v ./... -timeout=1h -run TestAccScaleway${{ matrix.products }}*
31
+ env :
32
+ TF_LOG : DEBUG
33
+ TF_ACC : 1
34
+ SCW_DEBUG : 1
35
+ SCW_ACCESS_KEY : ${{ secrets.SCW_ACCESS_KEY }}
36
+ SCW_SECRET_KEY : ${{ secrets.SCW_SECRET_KEY }}
37
+ SCW_DEFAULT_ORGANIZATION_ID : ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ func testSweepRegistryNamespace(_ string) error {
39
39
})
40
40
}
41
41
42
- func TestRegistryNamespaceBeta (t * testing.T ) {
42
+ func TestAccScalewayRegistryNamespace_Basic (t * testing.T ) {
43
43
resource .ParallelTest (t , resource.TestCase {
44
44
PreCheck : func () { testAccPreCheck (t ) },
45
45
Providers : testAccProviders ,
You can’t perform that action at this time.
0 commit comments