Skip to content

Add cluster info to CogniteAPIError #880

Add cluster info to CogniteAPIError

Add cluster info to CogniteAPIError #880

---
name: build
on:
pull_request:
branches: [master]
jobs:
build_and_test_streamlit_pyodide:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
- name: Build package using poetry
run: |
pip install poetry
poetry build
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install [email protected] # stlite currently using pyodide 0.25.1
- name: Install cognite-sdk in pyodide environment
run: |
whl_file=$(find dist -name "*.whl" | sed 's|^dist/||') # Find the built wheel file, remove dist/ prefix
echo "Found built wheel file: $whl_file"
SDK_FILE_PATH=$whl_file \
PACKAGES="[\"pyodide-http\", \"http://localhost:3000/dist/$whl_file\"]" \
node scripts/test-pyodide.js