Skip to content

Commit

Permalink
Experiment with standalone plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
vg12345 committed May 16, 2024
1 parent e15b99b commit f405f1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pdr_plugin_ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Run single plugin instance on background as standalone
run: |
kill -9 isolation_algo.py
pkill -9 -f isolation_algo.py
sleep 10
nohup python plugins/pdr_deterministic_plugin/ufm_sim_web_service/isolation_algo.py > /dev/null 2>&1 &
Expand All @@ -40,5 +40,5 @@ jobs:

- name: Kill plugin process
run: |
kill -9 isolation_algo.py
pkill -9 -f isolation_algo.py
sleep 10
2 changes: 2 additions & 0 deletions plugins/pdr_deterministic_plugin/tests/exclude_list_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
from exclude_list import ExcludeList, ExcludeListItem
from isolation_algo import create_logger

# Temp

def get_logger():
"""
Return logger associated with log file in temporary directory
Expand Down

0 comments on commit f405f1d

Please sign in to comment.