Skip to content

Documenting and removing partially the need for Node.js in local Pipe… #127

Documenting and removing partially the need for Node.js in local Pipe…

Documenting and removing partially the need for Node.js in local Pipe… #127

Workflow file for this run

name: "Python bindings tests 22"
on:
pull_request:
paths-ignore:
- 'docs/**'
workflow_dispatch:
jobs:
tests-22:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.11]
env:
BIGML_USERNAME: ${{ secrets.BIGML_USERNAME }}
BIGML_API_KEY: ${{ secrets.BIGML_API_KEY }}
BIGML_ORGANIZATION: ${{ secrets.BIGML_ORGANIZATION }}
BIGML_EXTERNAL_CONN_HOST: ${{ secrets.BIGML_EXTERNAL_CONN_HOST }}
BIGML_EXTERNAL_CONN_PORT: ${{ secrets.BIGML_EXTERNAL_CONN_PORT }}
BIGML_EXTERNAL_CONN_DB: ${{ secrets.BIGML_EXTERNAL_CONN_DB }}
BIGML_EXTERNAL_CONN_USER: ${{ secrets.BIGML_EXTERNAL_CONN_USER }}
BIGML_EXTERNAL_CONN_PWD: ${{ secrets.BIGML_EXTERNAL_CONN_PWD }}
BIGML_DELTA: ${{ env.BIGML_DELTA }}

Check failure on line 25 in .github/workflows/tests_22.yml

View workflow run for this annotation

GitHub Actions / Python bindings tests 22

Invalid workflow file

The workflow is not valid. .github/workflows/tests_22.yml (Line: 25, Col: 22): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BIGML_DELTA
steps:
- name: Install packages
uses: actions/checkout@v3
- run: |
pip install .[topics]
- name: Run tests *22 24 25 26 27 28 29 30 31 32 34 39 43 42 44 99*
run: |
pip3 install pytest
export TESTS=$(for t in "22" "24" "25" "26" "27" "28" "29" "30" "31" "32" "34" "39" "43" "42" "44" "99"; do ls bigml/tests/*$t*.py;done|paste -sd " ")
echo $TESTS
pytest -s $TESTS