Skip to content

Commit 3e2dff0

Browse files
authored
Add ruff formatting and linting (#65)
1 parent f2058b4 commit 3e2dff0

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ jobs:
2727
path: "dist/*"
2828
if-no-files-found: error
2929

30+
lint:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v3
34+
with:
35+
fetch-depths: 0
36+
- uses: actions/setup-python@v4
37+
- name: Install Ruff
38+
run: pip install ruff
39+
- name: Check format
40+
run: ruff format --check
41+
- name: Check lints
42+
run: ruff check
43+
3044
test:
3145
runs-on: ${{ matrix.os }}
3246
needs: build

clr_loader/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_mono(
3232
jit_options: Optional[Sequence[str]] = None,
3333
assembly_dir: Optional[str] = None,
3434
config_dir: Optional[str] = None,
35-
set_signal_chaining: bool = False
35+
set_signal_chaining: bool = False,
3636
) -> Runtime:
3737
"""Get a Mono runtime instance
3838

clr_loader/mono.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ class MethodDesc:
8686
def __init__(self, typename, function):
8787
self._desc = f"{typename}:{function}"
8888
self._ptr = _MONO.mono_method_desc_new(
89-
self._desc.encode("utf8"), 1 # include_namespace
89+
self._desc.encode("utf8"),
90+
1, # include_namespace
9091
)
9192

9293
def search(self, image):

clr_loader/util/find.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ def find_libmono(*, assembly_dir: str = None, sgen: bool = True) -> Path:
137137
)
138138

139139
else:
140-
if assembly_dir == None:
140+
if assembly_dir is None:
141141
from ctypes.util import find_library
142+
142143
path = find_library(unix_name)
143144
else:
144145
libname = "lib" + unix_name + ".so"

doc/conf.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
import sys
2+
from pathlib import Path
3+
14
project = "clr-loader"
25
copyright = "2022, Benedikt Reinartz"
36
author = "Benedikt Reinartz"
47

58
extensions = ["sphinx.ext.autodoc"]
69

710
# Add parent to path for autodoc
8-
import sys, os
9-
10-
sys.path.append(os.path.abspath(".."))
11+
sys.path.append(str(Path("..").absolute()))
1112

1213
# autodoc_typehints = "both"
1314

tests/test_common.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import shutil
22
import pytest
33
from subprocess import check_call
4-
import os
54
import sys
65
from pathlib import Path
76

0 commit comments

Comments
 (0)