This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
Add new field in result object called "text_blob" for TextBlob DC type #29
Workflow file for this run
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
name: Test flojoy_node_env | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "flojoy/flojoy_node_env.py" | |
- "tests/flojoy_node_venv_test_.py" | |
pull_request: | |
paths: | |
- "flojoy/flojoy_node_env.py" | |
- "tests/flojoy_node_venv_test_.py" | |
workflow_dispatch: | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install pip dependencies | |
run: | | |
pip install ruff pytest | |
pip install -r requirements.txt | |
pip install -e . | |
- name: Run python tests | |
run: python -m pytest -vv tests/flojoy_node_venv_test_.py --runslow | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install pip dependencies | |
run: | | |
pip install ruff pytest | |
pip install -r requirements.txt | |
pip install -e . | |
- name: Run python tests | |
run: python -m pytest -vv tests/flojoy_node_venv_test_.py --runslow | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install pip dependencies | |
run: | | |
pip install ruff pytest | |
pip install -r requirements.txt | |
pip install -e . | |
shell: powershell | |
- name: Run python tests | |
run: python -m pytest -vv tests/flojoy_node_venv_test_.py --runslow | |
shell: powershell | |