-
-
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.
- Loading branch information
Showing
7 changed files
with
118 additions
and
71 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
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 |
---|---|---|
|
@@ -5,10 +5,23 @@ on: | |
- main | ||
pull_request: | ||
branches: | ||
- '*' | ||
- "*" | ||
workflow_dispatch: | ||
inputs: | ||
target: | ||
description: "How much of the test suite to run" | ||
type: choice | ||
default: default | ||
options: | ||
- default | ||
- full | ||
- downstream | ||
cache: | ||
description: "Use cache" | ||
type: boolean | ||
default: true | ||
schedule: | ||
- cron: '0 17 * * SUN' | ||
- cron: "0 17 * * SUN" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
|
@@ -17,33 +30,75 @@ concurrency: | |
jobs: | ||
pre_commit: | ||
name: Run pre-commit | ||
runs-on: 'ubuntu-latest' | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/[email protected] | ||
- uses: holoviz-dev/holoviz_tasks/pre-commit@v0 | ||
|
||
setup: | ||
name: Setup workflow | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ env.MATRIX }} | ||
steps: | ||
- name: Set matrix option | ||
run: | | ||
if [[ '${{ github.event_name }}' == 'workflow_dispatch' ]]; then | ||
OPTION=${{ github.event.inputs.target }} | ||
elif [[ '${{ github.event_name }}' == 'schedule' ]]; then | ||
OPTION="full" | ||
elif [[ '${{ github.event_name }}' == 'push' && '${{ github.ref_type }}' == 'tag' ]]; then | ||
OPTION="full" | ||
else | ||
OPTION="default" | ||
fi | ||
echo "MATRIX_OPTION=$OPTION" >> $GITHUB_ENV | ||
- name: Set test matrix with 'default' option | ||
if: env.MATRIX_OPTION == 'default' | ||
run: | | ||
MATRIX=$(jq -nsc '{ | ||
"os": ["ubuntu-latest", "macos-latest", "windows-latest"], | ||
"python-version": ["3.9", "3.12"] | ||
}') | ||
echo "MATRIX=$MATRIX" >> $GITHUB_ENV | ||
- name: Set test matrix with 'full' option | ||
if: env.MATRIX_OPTION == 'full' | ||
run: | | ||
MATRIX=$(jq -nsc '{ | ||
"os": ["ubuntu-latest", "macos-latest", "windows-latest"], | ||
"python-version": ["3.9", "3.10", "3.11", "3.12"] | ||
}') | ||
echo "MATRIX=$MATRIX" >> $GITHUB_ENV | ||
- name: Set test matrix with 'downstream' option | ||
if: env.MATRIX_OPTION == 'downstream' | ||
run: | | ||
MATRIX=$(jq -nsc '{ | ||
"os": ["ubuntu-latest"], | ||
"python-version": ["3.11"] | ||
}') | ||
echo "MATRIX=$MATRIX" >> $GITHUB_ENV | ||
unit_test_suite: | ||
name: Pytest on ${{ matrix.python-version }}, ${{ matrix.os }} | ||
needs: [pre_commit] | ||
name: Unit tests on Python ${{ matrix.python-version }}, ${{ matrix.os }} | ||
needs: [pre_commit, setup] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | ||
python-version: ${{ ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || ( github.event_name == 'push' && github.ref_type == 'tag' ) ) && fromJSON('["3.9", "3.10", "3.11"]') || fromJSON('["3.9", "3.10", "3.11"]') }} | ||
matrix: ${{ fromJson(needs.setup.outputs.matrix) }} | ||
timeout-minutes: 60 | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/install@v0.1a18 | ||
- uses: holoviz-dev/holoviz_tasks/install@v0 | ||
with: | ||
name: unit_test_suite | ||
python-version: ${{ matrix.python-version }} | ||
channel-priority: flexible | ||
channels: pyviz/label/dev,bokeh,conda-forge,nodefaults | ||
envs: -o tests -o sql -o tests_ci | ||
cache: true | ||
cache: ${{ github.event.inputs.cache || github.event.inputs.cache == '' }} | ||
id: install | ||
- name: doit test_unit | ||
run: | | ||
|
@@ -53,15 +108,16 @@ jobs: | |
run: | | ||
conda activate test-environment | ||
codecov | ||
core_test_suite: | ||
name: Core tests on Python ${{ matrix.python-version }}, ${{ matrix.os }} | ||
needs: [pre_commit] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ['ubuntu-latest'] | ||
python-version: ['3.12'] | ||
os: ["ubuntu-latest"] | ||
python-version: ["3.12"] | ||
timeout-minutes: 120 | ||
defaults: | ||
run: | ||
|
@@ -70,28 +126,17 @@ jobs: | |
DESC: "Python ${{ matrix.python-version }}, ${{ matrix.os }} core tests" | ||
PYTHON_VERSION: ${{ matrix.python-version }} | ||
steps: | ||
# Add back when this works on Python 3.12 | ||
# - uses: holoviz-dev/holoviz_tasks/[email protected] | ||
# with: | ||
# name: core_test_suite | ||
# python-version: ${{ matrix.python-version }} | ||
# # channel-priority: strict | ||
# channels: pyviz/label/dev,conda-forge,nodefaults | ||
# envs: "-o tests_core -o tests_ci" | ||
# cache: true | ||
# conda-update: true | ||
# id: install | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: "100" | ||
- name: Fetch unshallow | ||
run: git fetch --prune --tags --unshallow -f | ||
- uses: actions/setup-python@v4 | ||
- uses: holoviz-dev/holoviz_tasks/install@v0 | ||
with: | ||
python-version: 3.12 | ||
- run: | | ||
python -m pip install -ve '.[tests, tests_ci]' | ||
name: core_test_suite | ||
python-version: ${{ matrix.python-version }} | ||
# channel-priority: strict | ||
channels: pyviz/label/dev,conda-forge,nodefaults | ||
envs: "-o tests -o tests_ci" | ||
cache: ${{ github.event.inputs.cache || github.event.inputs.cache == '' }} | ||
conda-update: true | ||
id: install | ||
- name: doit test_unit | ||
run: | | ||
# conda activate test-environment | ||
conda activate test-environment | ||
pytest lumen |
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 |
---|---|---|
@@ -1,17 +1,21 @@ | ||
import pandas as pd | ||
import pytest | ||
|
||
pd.set_option('mode.string_storage', 'pyarrow') | ||
from hvplot.tests.util import makeMixedDataFrame | ||
|
||
|
||
@pytest.fixture | ||
def source_tables(): | ||
df_test = pd._testing.makeMixedDataFrame() | ||
df_test_sql = pd._testing.makeMixedDataFrame() | ||
df_test_sql_none = pd._testing.makeMixedDataFrame() | ||
string = pd.get_option('mode.string_storage') | ||
pd.set_option('mode.string_storage', 'pyarrow') | ||
df_test = makeMixedDataFrame() | ||
df_test_sql = makeMixedDataFrame() | ||
df_test_sql_none = makeMixedDataFrame() | ||
df_test_sql_none['C'] = ['foo1', None, 'foo3', None, 'foo5'] | ||
tables = { | ||
'test': df_test, | ||
'test_sql': df_test_sql, | ||
'test_sql_with_none': df_test_sql_none, | ||
} | ||
return tables | ||
yield tables | ||
pd.set_option('mode.string_storage', string) |
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