Skip to content

Commit

Permalink
Merge pull request #1694 from buildtesters/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit weekly autoupdate
  • Loading branch information
shahzebsiddiqui authored Feb 1, 2024
2 parents b8b7509 + ab6ad15 commit c482019
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
args: ["--profile", "black", "--filter-files", "buildtest", "tests", "docs"]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: '23.12.1'
rev: '24.1.1'
hooks:
- id: black
language_version: python3
1 change: 1 addition & 0 deletions buildtest/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
buildtest cli: include functions to build, get test configurations, and
interact with a global configuration for buildtest.
"""

import argparse
import datetime
import sys
Expand Down
1 change: 1 addition & 0 deletions buildtest/cli/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This module contains all the methods related to "buildtest build" which is used
for building test scripts from a Buildspec
"""

import json
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions buildtest/cli/inspect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""This module implements methods for buildtest inspect command that can be used
to retrieve test record from report file in JSON format."""

import re
import sys

Expand Down
1 change: 1 addition & 0 deletions buildtest/executors/cobalt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""This method implements CobaltExecutor class which is defines how cobalt executor
submit job to Cobalt scheduler."""

import json
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions buildtest/executors/lsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
jobs to LSF Scheduler. This class is called in class BuildExecutor
when initializing the executors.
"""

import logging
import os
import re
Expand Down
1 change: 1 addition & 0 deletions buildtest/executors/pbs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""This module implements PBSExecutor class that defines how executors submit
job to PBS Scheduler"""

import logging
import os

Expand Down
1 change: 1 addition & 0 deletions buildtest/executors/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
jobs to Slurm Scheduler. This class is called in class BuildExecutor
when initializing the executors.
"""

import logging
import os
import re
Expand Down
1 change: 1 addition & 0 deletions buildtest/log.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Methods related to buildtest logging
"""

import logging
import os

Expand Down

0 comments on commit c482019

Please sign in to comment.