Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example project #25

Draft
wants to merge 46 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
dbddb98
add example for deprecated locations and new projects and add new lin…
anikaweinmann Dec 9, 2024
e0c3e6c
start linting
anikaweinmann Dec 9, 2024
f268951
further linting
anikaweinmann Dec 9, 2024
6eb5a69
further linting
anikaweinmann Dec 9, 2024
8bd4496
pylint
anikaweinmann Dec 9, 2024
3558b09
Docker and bash linting
anikaweinmann Dec 9, 2024
8598fc0
further linting
anikaweinmann Dec 9, 2024
601eedf
further ruff
anikaweinmann Dec 12, 2024
d916e13
merge main
anikaweinmann Dec 12, 2024
78a78d9
merge main
anikaweinmann Dec 12, 2024
51841b8
merge
anikaweinmann Dec 12, 2024
fd5994e
changes
anikaweinmann Dec 12, 2024
446e487
Apply suggestions from code review
anikaweinmann Dec 12, 2024
2f4e08c
Apply suggestions from code review
anikaweinmann Dec 12, 2024
bf29a0e
docker lint
anikaweinmann Dec 12, 2024
fca6939
exclude VALIDATE_BASH_EXEC
anikaweinmann Dec 12, 2024
9c5ef63
fixes
anikaweinmann Dec 12, 2024
61b786d
further ruff
anikaweinmann Dec 12, 2024
5f61b84
try fix ruff
anikaweinmann Dec 12, 2024
45c96fa
ruff
anikaweinmann Dec 12, 2024
647a6d3
black
anikaweinmann Dec 12, 2024
4f9af57
changed
anikaweinmann Dec 12, 2024
97342a6
further ruff
anikaweinmann Dec 12, 2024
404a42f
other linting
anikaweinmann Dec 12, 2024
fde77ac
Apply suggestions from code review
anikaweinmann Dec 12, 2024
5f16651
VALIDATE_BASH_EXEC
anikaweinmann Dec 13, 2024
682e050
ruff --fix
mmacata Dec 13, 2024
3e6d204
make script executable
mmacata Dec 13, 2024
1efaf43
enhance workflows
mmacata Dec 13, 2024
72ecfb7
ruff ANN001 + D104
anikaweinmann Dec 19, 2024
093ab14
ruff: RUF012
anikaweinmann Dec 19, 2024
31ea4ea
ruff: RUF012 + I001
anikaweinmann Dec 19, 2024
8506a78
ruff: N816
anikaweinmann Dec 19, 2024
61c2494
ruff: PLR2004
anikaweinmann Dec 19, 2024
a68b194
ruff: PLW0603
anikaweinmann Dec 19, 2024
af521c3
ruff
anikaweinmann Dec 19, 2024
f1628b9
ruff
anikaweinmann Dec 19, 2024
bff7231
linting
anikaweinmann Dec 19, 2024
09a65ea
linting
anikaweinmann Dec 19, 2024
dddbcba
flake8 config
anikaweinmann Dec 19, 2024
734f781
add projects endpoint tests
anikaweinmann Dec 19, 2024
4126828
fix setup files
anikaweinmann Dec 19, 2024
696058e
working with actinia-docker setup
anikaweinmann Dec 20, 2024
1bc57bc
add deprecation decorator
anikaweinmann Dec 20, 2024
4d9dfd4
setup.cfg
anikaweinmann Dec 20, 2024
893d5ee
ruff
anikaweinmann Dec 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge main
  • Loading branch information
anikaweinmann committed Dec 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 78a78d9ff19cf2c2b275caf03dd62f01d85f0606
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -14,4 +14,4 @@ jobs:
# VALIDATE_JSON: false
# VALIDATE_HTML: false
# VALIDATE_CSS: false
# VALIDATE_BASH_EXEC: false
# VALIDATE_BASH_EXEC: false
6 changes: 3 additions & 3 deletions tests/test_resource_base.py
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@


def setup_environment():
"""Setuo test environment"""
"""Setuo test environment."""

global REDIS_PID
# Set the port to the test redis server
@@ -91,7 +91,7 @@ def setup_environment():


def stop_redis():
"""Function to stop redis"""
"""Function to stop redis."""
if SERVER_TEST is False:
global REDIS_PID
# Kill th redis server
@@ -106,7 +106,7 @@ def stop_redis():


class ActiniaResourceTestCaseBase(ActiniaTestCaseBase):
"""Actinia resource test case base class"""
"""Actinia resource test case base class."""

@classmethod
def create_user(
You are viewing a condensed version of this merge commit. You can view the full changes here.