Skip to content

DM-43722 EFD Transform Implementation #250

DM-43722 EFD Transform Implementation

DM-43722 EFD Transform Implementation #250

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Run PyTest
on:
push:
branches:
- main
pull_request:
jobs:
run_pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build docker image
run: docker build -f Dockerfile.pytest -t pytest_image .
- name: Run docker image
run: docker run --rm -e PYTEST_ADDOPTS="--color=yes" pytest_image