Skip to content

Stateless reverse proxy for thirdparty service integration with Iris API.

License

Notifications You must be signed in to change notification settings

linkedin/iris-relay

Folders and files

NameName
Last commit message
Last commit date
Dec 8, 2022
Dec 8, 2022
Jan 18, 2024
Dec 13, 2022
Apr 23, 2019
Jan 23, 2017
Dec 8, 2022
Feb 3, 2023
Jan 14, 2022
Feb 28, 2019
Mar 19, 2020
Jan 23, 2017
Feb 13, 2023
Jan 23, 2017
May 16, 2017
Jan 23, 2017
Jan 23, 2017
May 30, 2017
Dec 8, 2022
Apr 27, 2022
Feb 3, 2023
Apr 27, 2022

Repository files navigation

Build Status License

Iris relay

Stateless reverse proxy for thirdparty service integration with Iris API.

Setup dev environment

  1. create & source your virtualenv
  2. run python setup.py develop
  3. run pip install -r dev_requirements.txt
  4. edit ./configs/config.dev.yaml to setup API credential and other settings

Tests

Run tests:

make unit  # unit tests
make e2e  # e2e tests
make test  # all tests, e2e + unit

NOTE: e2e tests requires a running API instance. You can tweak the api host, port and key setting in configs/config.dev.yaml.

Generate test coverage reports:

make e2e-cov
make unit-cov