Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Add python/tests/ tests #82

Merged
merged 1 commit into from
Sep 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/modin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
conda update conda
conda env update -f omniscidb/scripts/mapd-deps-conda-dev-env.yml
conda install -n ${{ env.CONDA_ENV }} -c conda-forge python=3.8 binutils
conda install -n ${{ env.CONDA_ENV }} -c conda-forge python=3.8

- name: Restore Maven cache
uses: actions/cache@v3
Expand Down Expand Up @@ -61,5 +61,8 @@ jobs:

- name: Run tests
run: |
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} sh -c "python -c 'import pyhdk'"
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} sh -c "pwd && python python/tests/modin/modin_smoke_test.py"
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} python -c 'import pyhdk'
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} python python/tests/modin/modin_smoke_test.py
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} python python/tests/test_pyhdk_bindings.py
$CONDA/bin/conda run -n ${{ env.CONDA_ENV }} python python/tests/test_pyhdk_sql.py