Skip to content

Commit 91eaf4a

Browse files
committed
github actions: enable integration test and build/unittest by default
1 parent 548d695 commit 91eaf4a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
build_wheels:
1717
name: Build wheels ${{ matrix.os }} (${{ matrix.platform }})
18-
if: contains(github.event.pull_request.labels.*.name, 'test-build') || github.event_name == 'push' && endsWith(github.event.ref, 'scylla')
18+
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build')) || github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
fail-fast: false
@@ -121,7 +121,7 @@ jobs:
121121

122122
build_sdist:
123123
name: Build source distribution
124-
if: contains(github.event.pull_request.labels.*.name, 'test-build') || github.event_name == 'push' && endsWith(github.event.ref, 'scylla')
124+
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build'))|| github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
125125
runs-on: ubuntu-latest
126126
steps:
127127
- uses: actions/checkout@v2

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ubuntu-20.04
12-
if: contains(github.event.pull_request.labels.*.name, 'integration-tests')
12+
if: "!contains(github.event.pull_request.labels.*.name, 'disable-integration-tests')"
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python 3.8

0 commit comments

Comments
 (0)