Skip to content

Commit

Permalink
test: test
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagolobocastro committed Jan 15, 2025
1 parent 9a95c31 commit c1bb6c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Pull Request CI

on:
push:
branches:
- lvm-vm
pull_request:
branches:
- develop
Expand Down Expand Up @@ -139,6 +142,11 @@ jobs:
OPENEBS_NAMESPACE: "openebs"
run: ./ci/ci-test.sh

# debugging
- name: Setup tmate session
timeout-minutes: 240
uses: mxschmitt/action-tmate@v3

- name: Upload Coverage Report
uses: codecov/codecov-action@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions tests/provision_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (

var _ = Describe("[lvmpv] TEST VOLUME PROVISIONING", func() {
Context("App is deployed with lvm driver", func() {
It("Running volume Creation Tests", volumeCreationTest)
It("Running scheduling Tests", schedulingTest)
// It("Running volume Creation Tests", volumeCreationTest)
// It("Running scheduling Tests", schedulingTest)
It("Running volume/snapshot Capacity Tests", capacityTest)
})
})
Expand Down Expand Up @@ -322,5 +322,5 @@ func capacityTest() {
device := setupVg(40, "lvmvg")
defer cleanupVg(device, "lvmvg")
By("###Running thin volume capacity test###", thinVolCapacityTest)
By("###Running sized snapshot test###", sizedSnapshotTest)
//By("###Running sized snapshot test###", sizedSnapshotTest)
}

0 comments on commit c1bb6c1

Please sign in to comment.