presidio/e2e-tests
Wayne Hong fde30dd4bd
Add support for allow_list, allow_list_match, regex_flags in REST API (#1478)
2024-11-11 22:41:48 +02:00
..
common
resources
tests Add support for allow_list, allow_list_match, regex_flags in REST API (#1478) 2024-11-11 22:41:48 +02:00
README.md
pytest.ini
requirements.txt

README.md

End-to-end tests

This folder contains end-to-end tests for Presidio. It requires the different services to be running as HTTP services.

Steps:

  1. Install presidio

  2. Run services, e.g., using docker-compose:

    docker-compose up --build -d 
    

    Note that these might take some time to build for the first time.

  3. Install the e2e-tests framework, preferrably in a virtual environment:

    pip install -r requirements.txt
    
  4. Run tests:

    pytest
    

See more information on Presidio's documentation on E2E tests.