Skip to content

Commit

Permalink
Disable pipenv verification in CI (#2308)
Browse files Browse the repository at this point in the history
  • Loading branch information
krzentner authored Oct 20, 2021
1 parent 3a57885 commit b4abe07
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,10 @@ jobs:
name: Verify Pipenv Environment Installation
runs-on: ubuntu-latest
needs: build_docker_container
if: github.event_name == 'schedule'
# For unclear reasons this step takes over six hours on GitHub Actions.
# To enable the CI to run, it is disabled for now.
# if: github.event_name == 'schedule'
if: false

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit b4abe07

Please sign in to comment.