https://forge.softwareheritage.org/source/swh-scheduler.git
Revision 5cc62be1a4059680b534c810ee97b8b80ac9cd56 authored by David Douard on 08 February 2022, 13:59:29 UTC, committed by David Douard on 24 February 2022, 14:51:44 UTC
- add the `get_datastore` function in `swh.scheduler`
- add the `get_current_version` method in `SchedulerBackend`,
- remove dbversion management from sql init script
- update tests accordingly
1 parent 234e165
Raw File
Tip revision: 5cc62be1a4059680b534c810ee97b8b80ac9cd56 authored by David Douard on 08 February 2022, 13:59:29 UTC
Adapt to swh.core 2.0.0
Tip revision: 5cc62be
.pre-commit-config.yaml
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.1.0
    hooks:
      - id: trailing-whitespace
      - id: check-json
      - id: check-yaml

  - repo: https://gitlab.com/pycqa/flake8
    rev: 4.0.1
    hooks:
      - id: flake8

  - repo: https://github.com/codespell-project/codespell
    rev: v2.1.0
    hooks:
      - id: codespell
        name: Check source code spelling
        args: [-L simpy, -L hist]
        stages: [commit]
      - id: codespell
        name: Check commit message spelling
        stages: [commit-msg]

  - repo: local
    hooks:
      - id: mypy
        name: mypy
        entry: mypy
        args: [swh]
        pass_filenames: false
        language: system
        types: [python]

  - repo: https://github.com/PyCQA/isort
    rev: 5.10.1
    hooks:
      - id: isort

  - repo: https://github.com/python/black
    rev: 19.10b0
    hooks:
      - id: black
back to top