-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add_limit_bounds
- Loading branch information
Showing
9 changed files
with
81 additions
and
24 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 |
---|---|---|
|
@@ -16,21 +16,11 @@ concurrency: | |
|
||
jobs: | ||
pre_commit: | ||
name: Run pre-commit hooks | ||
name: Run pre-commit | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: "1" | ||
- name: set PY | ||
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pre-commit | ||
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} | ||
- name: pre-commit | ||
uses: pre-commit/[email protected] | ||
test_suite: | ||
- uses: holoviz-dev/holoviz_tasks/[email protected] | ||
unit_test_suite: | ||
name: Pytest on ${{ matrix.python-version }}, ${{ matrix.os }} | ||
needs: [pre_commit] | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -47,9 +37,9 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
|
||
- uses: holoviz-dev/holoviz_tasks/install@v0.1a15 | ||
- uses: holoviz-dev/holoviz_tasks/install@v0.1a18 | ||
with: | ||
name: test_suite | ||
name: unit_test_suite | ||
python-version: ${{ matrix.python-version }} | ||
channel-priority: flexible | ||
channels: pyviz/label/dev,bokeh,conda-forge,nodefaults | ||
|
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
18 changes: 18 additions & 0 deletions
18
lumen/tests/sample_dashboard/sync_query_filters_default.yaml
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
config: | ||
sync_with_url: true | ||
sources: | ||
test: | ||
type: 'file' | ||
files: ['../sources/test.csv'] | ||
targets: | ||
- title: "Test" | ||
source: test | ||
filters: | ||
- type: widget | ||
field: A | ||
- type: widget | ||
field: C | ||
default: ['foo1'] | ||
views: | ||
- table: test | ||
type: test |
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
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