diff --git a/.github/workflows/nightly-workflow.yml b/.github/workflows/nightly-workflow.yml index 2874fc84d96..dbdc3990592 100644 --- a/.github/workflows/nightly-workflow.yml +++ b/.github/workflows/nightly-workflow.yml @@ -34,10 +34,6 @@ jobs: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - - name: Collect Workflow Telemetry - uses: runforesight/foresight-workflow-kit-action@v1 - if: ${{ always() }} - - name: Check out code uses: actions/checkout@v2 with: @@ -83,19 +79,6 @@ jobs: run: | pytest --timeout_method "thread" -o log_cli=true -o log_cli_level=INFO --junit-xml=report/junit.xml tests/integration - - name: Foresight Test / Coverage Results - uses: runforesight/foresight-test-kit-action@v1 - if: success() || failure() - with: - test_format: JUNIT - test_framework: PYTEST - test_path: ./report/ - tags: | - type:"Nightly" - os:${{ matrix.os }} - python:${{ matrix.python-version }} - language:"Python" - - name: Slack Notify of failure if: failure() id: slack diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 7409b711e98..4cd9a650311 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -25,7 +25,7 @@ jobs: - name: Check out code uses: actions/checkout@v2 with: - ref: ${{ github.event.inputs.branch }} + ref: ${{ inputs.branch }} - name: Set up Python 3.7 uses: actions/setup-python@v2