Skip to content

Commit

Permalink
applying black
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzebsiddiqui committed Aug 28, 2023
1 parent 90d3979 commit 729032c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion buildtest/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import os
import pwd
import shutil

from rich.console import Console

console = Console(soft_wrap=True)
Expand Down Expand Up @@ -36,7 +37,7 @@
VAR_DIR = os.path.join(ci_dir, "var")
settings_file = os.path.join(ci_dir, "config.yml")
shutil.copyfile(DEFAULT_SETTINGS_FILE, settings_file)
DEFAULT_SETTINGS_FILE=settings_file
DEFAULT_SETTINGS_FILE = settings_file


BUILDTEST_LOGFILE = os.path.join(VAR_DIR, "buildtest.log")
Expand Down
3 changes: 2 additions & 1 deletion buildtest/tools/unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
if here not in sys.path:
sys.path.insert(0, here)

import tempfile

import coverage
import pytest
import tempfile

from buildtest.defaults import (
BUILDTEST_ROOT,
Expand Down

0 comments on commit 729032c

Please sign in to comment.