Skip to content

Fix/session id with env #176

Fix/session id with env

Fix/session id with env #176

Workflow file for this run

name: pytest
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pandas tqdm IPython
pip install -e .
pip install -r requirements.txt
- name: Running Tests
run: |
pytest tests/dfcx_scrapi/ -vv