GitHub Action to run your tests automatically instrumented with the Scope Python agent.
Scope gives developers production-level visibility on every test for every app – spanning mobile, monoliths, and microservices.
- Set Scope DSN inside Settings > Secrets as
SCOPE_DSN
. - Add a step to your GitHub Actions workflow YAML that uses this action:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Scope for Python
uses: undefinedlabs/scope-for-python-action@v1
with:
dsn: ${{secrets.SCOPE_DSN}} # required
command: python -m unittest discover # optional - default is 'python -m unittest discover'