Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Schedule weekly test runs against unfrozen dependencies #80

Open
consideRatio opened this issue Nov 22, 2023 · 1 comment
Open

Schedule weekly test runs against unfrozen dependencies #80

consideRatio opened this issue Nov 22, 2023 · 1 comment

Comments

@consideRatio
Copy link
Contributor

With tests scheduled to run regularly against dependencies that aren't frozen, we could detect issues arising over time due to changes in dependencies or the various execution environments, such as the GitHub actions runners having certain python unrelated dependencies such as versions of geckodriver etc.

Below is an example of triggers for a github actions test workflow that could be used.

on:
  pull_request:
    paths-ignore:
      - "docs/**"
      - "contrib/**"
      - "**.md"
      - ".github/workflows/*"
      - "!.github/workflows/test.yaml"
  push:
    paths-ignore:
      - "docs/**"
      - "contrib/**"
      - "**.md"
      - ".github/workflows/*"
      - "!.github/workflows/test.yaml"
    branches-ignore:
      - "dependabot/**"
      - "pre-commit-ci-update-config"
  schedule:
    # At 05:00 on Monday - https://crontab.guru
    - cron: "0 5 * * 1"
  workflow_dispatch:
@consideRatio
Copy link
Contributor Author

Acceptance test failures showing up in the main branch of jupyterhub/jupyter-server-proxy from time to time, and when they do I often wonder what caused it. Since this project helps setup various things that could break against different jupyterlab versions or similar as well over time, it would be great to be able to see if tests has started failing here or not over time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant