Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
particle-filter-for-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rob Moss
particle-filter-for-python
Commits
5897a06c
Commit
5897a06c
authored
1 year ago
by
Rob Moss
Browse files
Options
Downloads
Patches
Plain Diff
Bump ruff version, resolve 2024.2 style lint
parent
1477c4e8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#85139
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
noxfile.py
+1
-1
1 addition, 1 deletion
noxfile.py
tests/test_build.py
+1
-0
1 addition, 0 deletions
tests/test_build.py
with
2 additions
and
1 deletion
noxfile.py
+
1
−
1
View file @
5897a06c
...
...
@@ -86,6 +86,6 @@ def docs(session):
def
ruff
(
session
):
"""
Check code for linter warnings and formatting issues.
"""
check_files
=
[
'
src
'
,
'
tests
'
,
'
doc
'
,
'
noxfile.py
'
]
session
.
install
(
'
ruff ~= 0.
1.9
'
)
session
.
install
(
'
ruff ~= 0.
3
'
)
session
.
run
(
'
ruff
'
,
'
check
'
,
*
check_files
)
session
.
run
(
'
ruff
'
,
'
format
'
,
'
--diff
'
,
*
check_files
)
This diff is collapsed.
Click to expand it.
tests/test_build.py
+
1
−
0
View file @
5897a06c
"""
Test the construction and behaviour of simulation contexts.
"""
import
copy
import
logging
import
numpy
as
np
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment