-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(rest): Update expected response for survey detail PATCH operation (
- Loading branch information
1 parent
3ee8907
commit d6ba3e9
Showing
10 changed files
with
51 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
enabled: true | ||
titleOnly: true | ||
|
||
scopes: | ||
- rest | ||
- rpc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,13 +100,13 @@ jobs: | |
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: true | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
if: "${{ !matrix.nightly }}" | ||
uses: actions/setup-python@v4.7.1 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
@@ -131,7 +131,7 @@ jobs: | |
nox -s tests | ||
- name: Upload coverage data | ||
uses: actions/upload-artifact@v3.1.3 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage-unit | ||
path: ".coverage.*" | ||
|
@@ -155,10 +155,10 @@ jobs: | |
tags: ${{ steps.tags.outputs.tags }} | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4.7.1 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
architecture: x64 | ||
|
@@ -193,7 +193,7 @@ jobs: | |
engines: ${{ steps.engines.outputs.engines }} | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Test against all engines | ||
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') || inputs.update_coverage }} | ||
|
@@ -274,12 +274,12 @@ jobs: | |
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: true | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4.7.1 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
@@ -299,7 +299,7 @@ jobs: | |
echo "LS_CHECKSUM=$(shasum -a 256 ls.tar.gz | cut -d' ' -f1)" >> $GITHUB_ENV | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3.0.0 | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Get Docker | ||
uses: actions-hub/docker/[email protected] | ||
|
@@ -331,7 +331,7 @@ jobs: | |
- name: Upload coverage data | ||
if: always() | ||
uses: actions/upload-artifact@v3.1.3 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage-integration | ||
path: ".coverage.*" | ||
|
@@ -348,18 +348,18 @@ jobs: | |
fail-fast: false | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4.7.1 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install tools | ||
uses: ./.github/actions/install-tools | ||
|
||
- name: Download coverage data | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: coverage-${{ matrix.flag }} | ||
|
||
|
@@ -373,7 +373,7 @@ jobs: | |
nox -- xml | ||
- name: Upload coverage report | ||
uses: codecov/codecov-action@v3.1.4 | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./coverage.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters