Commit graph

674 commits

Author SHA1 Message Date
Bastian Schroll 7c0a9cc84c
Merge pull request #131 from KoenigMjr/docu-changes
Änderung der Workflow-Datei "build_docs.yml" für das ablösen der ph_pages Branch zum Aufbau der Website
2025-06-27 09:21:40 +02:00
KoenigMjr 07932c3b7b
Anstoßen Workflows 2025-06-14 12:58:14 +02:00
KoenigMjr 77086dd4de
Ablösen des gh_pages Branch
NEU:
* permissions-Sektor
* concurrency-Sektor
* setup Pages in jobs - build_docs eingefügt
* Build mkdocs in jobs - build_docs eingefügt
* Upload artifact in jobs - build_docs eingefügt
* Deployment job-Sektor

Entfernt:
* Build_docs strategy
* Setup Python (in Dokumentation nicht gebraucht? <-- bitte kritisch prüfen)
* Python in jobs - build_docs

Geändert:
* Checkout von v2 auf v4
* Install Dependencies zusammengefasst
* bei Doxygen mattnotmitt/doxygen-action@v1 entfernt, Code verschlankt
2025-06-14 12:56:08 +02:00
Bastian Schroll d4e9b631ab
Merge pull request #104 from GonzoBS/patch-1
Issue #103: Update doubleFilter.py
2025-06-11 10:23:45 +02:00
Bastian Schroll 1ead2cbaa2
Update module/filter/doubleFilter.py
Co-authored-by: Jan Speller <github@speller.biz>
2025-06-11 10:22:12 +02:00
Bastian Schroll a6a1059931
Merge branch 'develop' into patch-1 2025-06-11 10:20:17 +02:00
Bastian Schroll 3388dd16e7
Merge pull request #81 from janspeller/feature/ISSUE-67
Fix Issue #67
2025-06-11 10:01:51 +02:00
Bastian Schroll 399a768498
Merge branch 'develop' into feature/ISSUE-67 2025-06-11 09:59:46 +02:00
Bastian Schroll 31aea6217c
Merge pull request #128 from KoenigMjr/install.sh-patch
Update install.sh
2025-06-11 09:59:30 +02:00
Bastian Schroll 340dfce789
Merge branch 'develop' into install.sh-patch 2025-06-11 09:56:46 +02:00
Bastian Schroll 2c9453f2eb
Merge pull request #129 from KoenigMjr/pytest-update
Pytest update
2025-06-11 09:56:33 +02:00
KoenigMjr 1f7ae72671
Update run_pytest.yml
workflow_dispatch entfernt
2025-06-11 09:38:50 +02:00
Bastian Schroll 251cd73713
Merge branch 'develop' into feature/ISSUE-67 2025-06-11 07:35:25 +02:00
KoenigMjr fcc9634be2
Merge pull request #2 from KoenigMjr/pytest-update-manual-run
Pytest update manual run
2025-06-10 13:20:46 +02:00
KoenigMjr 1a0f981c5c
Update run_pytest.yml
Auskommentieren von workflow_dispatch
2025-06-10 13:18:35 +02:00
KoenigMjr 3680f0a0d7
Aktualisieren von run_pytest.yml
v3.13 hinzugefügt
2025-06-10 12:39:40 +02:00
KoenigMjr 889d00e660
Aktualisieren von run_pytest.yml
v3.8 entfernt
2025-06-10 11:47:28 +02:00
KoenigMjr 0ba26181f3
Update requirements.txt
Flake8 to 6.1.0
2025-06-10 08:03:47 +02:00
KoenigMjr d2225f899d
Update run_pytest.yml
Save artifacts
name: test-${{ matrix.python-version }}.log

Für jeden Test ein eigenes Logfile - aufgrund Fehler im Test
2025-06-10 07:53:42 +02:00
KoenigMjr 9bcfcf6759
Update run_pytest.yml
actions/upload-artifact@v3

to

actions/upload-artifact@v4
2025-06-10 07:50:03 +02:00
KoenigMjr a877464c28
Update run_pytest.yml
actions/upload-artifact@v3 to actions/upload-artifact@v4
2025-06-10 07:47:46 +02:00
KoenigMjr 2c21884a61
Update run_pytest.yml
+ Pull-Request
2025-06-10 07:45:11 +02:00
KoenigMjr 056de68ce2
Update run_pytest.yml
- Entfernt **Python 3.7** aus der `matrix`, da sie nicht mehr von GitHub Actions bereitgestellt wird (End-of-Life).
- Aktualisiert `actions/checkout` von `v1` auf `v3` (empfohlene aktuelle Version).
- Verwendet `actions/upload-artifact@v3` anstelle von `@master` für stabileren Artifact-Upload.
- Fügt `mkdir -p log/` hinzu, um sicherzustellen, dass das Log-Verzeichnis existiert.
2025-06-10 07:31:43 +02:00
KoenigMjr 203feccbc6 Revert "Update run_pytest.yml"
This reverts commit ffb1256e24.
2025-06-09 18:18:03 +02:00
KoenigMjr ffb1256e24 Update run_pytest.yml 2025-06-09 12:54:38 +02:00
KoenigMjr a9a8ccdc83
Update install.sh
update to qmake6
2025-06-04 11:40:57 +02:00
Bastian Schroll e164533ad4
Update regex_filter.md 2024-05-05 17:13:44 +02:00
Bastian Schroll 37a1d0835d
Merge branch 'develop' into patch-1 2024-01-08 08:52:19 +01:00
Bastian Schroll b7ba7f8627
Merge pull request #112 from Luflosi/fix-deprecation-warning
Avoid "DeprecationWarning: invalid escape sequence"
2024-01-08 07:49:11 +01:00
Luflosi d4dcc75711
Avoid "DeprecationWarning: invalid escape sequence"
Without this change, many warnings like this will be generated while running pytest:
```
test/test_template.py:3
  /build/source/test/test_template.py:3: DeprecationWarning: invalid escape sequence '\/'
    """!
```
This can also be seen when manually running python with warnings enabled.

This happens because the comment uses a multiline string and Python interprets the backslash in the logo as an escape character and complains that \/ is not a valid escape sequence. To fix this, prepend the string with the letter r to indicate that the backslash should be treated as a literal character, see https://docs.python.org/3/reference/lexical_analysis.html#index-20.
I also applied this change to all the comment strings since that shouldn't break anything and to establish it as a pattern for the future so this problem hopefully never happens again.

This is what I did specifically:
- Change the comment at the top of bw_client.py and bw_server.py to start with `"""!` since that seems to be the pattern here
- Search-and-Replace all occurances of `"""!` with `r"""!`
- Manually change the strings in `logoToLog()` in boswatch/utils/header.py
2023-09-19 17:49:09 +02:00
Jan Speller 1d6f29034e
Merge branch 'develop' into feature/ISSUE-67 2023-01-24 13:28:56 +01:00
Jan Speller 07953e0d3b
Typo 2023-01-24 13:27:23 +01:00
Jan Speller bd25ff75e8
Merge branch 'develop' into patch-1 2023-01-24 13:18:54 +01:00
Bastian Schroll 1b95474bc2
Merge pull request #102 from janspeller/bugfix/ISSUE-101-InputSources_Multimon
Issue #101: Restart multimon on broken input
2023-01-24 11:46:22 +01:00
Jan Speller b43f71874f
Remove Whitespace 2023-01-24 10:22:46 +01:00
Bastian Schroll a92dc0ce7b
Merge branch 'develop' into bugfix/ISSUE-101-InputSources_Multimon 2023-01-24 07:25:54 +01:00
Bastian Schroll 2d9791f762
Merge pull request #105 from janspeller/feature/http_module_fix
Fix call to asyncRequests after Method was made private
2023-01-24 07:25:42 +01:00
Jan Speller aef8d6f46d Limit flake8 to 4.0.1 to fix tests 2023-01-23 14:22:25 +00:00
Jan Speller c5c45e39d9
Fix Method calll to asyncRequests after function was made Private 2023-01-23 14:22:08 +01:00
GonzoBS e43aad1e42
Update doubleFilter.py
Probleme mit dem double Filter.
Immer wenn die Liste nach Zeit gelöscht wird, wird das nächste doppelte Paket als ok durchgelassen. Die Liste ist dann bis auf einen Eintrag leer, der erste Eintrag wird aber nicht auf Duplikat geprüft.
Einstellung ist RIC, SUBRIC, Message. Die Zeit habe ich zum testen auf 2 sekunden gestellt.

type: module
res: filter.doubleFilter
config:
ignoreTime: 2
maxEntry: 40
pocsagFields:
ric
subric
message
2022-11-06 17:36:28 +01:00
Jan Speller bb9a98e52d
Merge branch 'develop' into bugfix/ISSUE-101-InputSources_Multimon 2022-10-19 13:41:42 +02:00
Jan Speller dbf552f680 Restart multimon on broken input 2022-10-19 11:40:19 +00:00
Bastian Schroll b277640046 update codeQL workflow 2022-05-25 06:30:11 +00:00
Jan Speller b1f87e80d6
Merge branch 'BOSWatch:develop' into feature/ISSUE-67 2022-05-24 14:08:05 +02:00
Bastian Schroll 790b944200
Merge pull request #99 from janspeller/feature/gh-pages
Move to Github Pages for Documentation Deployment
2022-05-24 10:28:12 +02:00
Bastian Schroll 41d7f7b650
add dev branch
use dev branch as docs source until release
2022-05-24 10:27:23 +02:00
Jan Speller 22d122f096 upgrade to checkout v2, install python via action, add missing files to docs 2022-05-23 23:49:21 +02:00
Jan Speller ed7c754e71 add file to mkdocs gh-deploy 2022-05-23 23:38:40 +02:00
Jan Speller 2c087d1ac6 Add feature/gh-pages branch to documentation-build pipeline for testing, change deployment to gh-pages 2022-05-23 23:36:00 +02:00
Jan Speller efeb271de4 Documentation, fix config flag for logging 2022-05-23 23:20:54 +02:00