Commit graph

634 commits

Author SHA1 Message Date
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
Bastian Schroll e164533ad4
Update regex_filter.md 2024-05-05 17:13:44 +02: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
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
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
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
Bastian Schroll fc39b15d54
Merge pull request #98 from janspeller/bugfix/ISSUE-94
Fix sending Location in Telegram Plugin (Issue #94)
2022-05-23 06:07:48 +02:00
Jan Speller aafffaa998 Fix Tests for Python 3.10 2022-05-21 16:52:36 +02:00
Jan Speller 0e864147cb Fix Tests for Python 3.10 2022-05-21 16:51:01 +02:00
Jan Speller 0d09ff202b Fix Tests for Python 3.10 2022-05-21 16:48:32 +02:00
Jan Speller c75a1dba96
Merge branch 'BOSWatch:develop' into bugfix/ISSUE-94 2022-05-21 16:46:41 +02:00
Jan Speller 39a34f7c24 Fix sending Location in Telegram Plugin (Issue #94) 2022-05-21 16:44:12 +02:00
Bastian Schroll e03abd28ca
Merge pull request #96 from 1nt4x/develop
fixed rtl_fm path
2022-03-18 13:53:58 +01:00
1nt4x b66bc14241 fixed rtl_fm path 2022-03-17 22:20:42 +01:00
Bastian Schroll 4be6e5f641
Merge pull request #93 from lgremme/develop
Default value not working (fir_size)
2022-02-25 06:54:41 +01:00
Lars Gremme b12c11d268 Update fir_size value and correct fir_size in docu 2022-02-23 19:15:45 +01:00
Bastian Schroll c6b13bcb65
Merge pull request #92 from lgremme/develop
Update install-script, add divera-plugin
2022-02-19 15:45:30 +01:00
Lars Gremme 3b65052a5b Update Changelog and remove double negation 2022-02-18 19:34:00 +01:00
Lars Gremme b5477e137d Update for flake8 2022-02-17 20:57:13 +01:00
Lars Gremme f7334d8121 Merge branch 'develop' of github.com:lgremme/BW3-Core into develop 2022-02-17 20:01:36 +01:00
Lars Gremme 8a8fc3bd6b Update dependencies and correct issue 2022-02-17 20:01:26 +01:00
Bastian Schroll 395cde25c1
Merge branch 'develop' into develop 2022-02-17 10:11:04 +01:00
Bastian Schroll 7ecec6940f
Update run_pytest.yml
fix gh-action
2022-02-17 10:07:51 +01:00
Bastian Schroll 01e94856ac
Update run_pytest.yml
drop py3.6, add py3.10 to action
2022-02-17 10:05:07 +01:00
Bastian Schroll 6742524363
Merge branch 'develop' into develop 2022-02-17 10:00:51 +01:00
Bastian Schroll 174f3dc5c5
Merge pull request #82 from janspeller/bugfix/additional_wildcard_field_empty
Fix issue if additionalWildcard is not empty (eg. descriptor)
2022-02-17 09:58:26 +01:00
Lars Gremme e4822cbf70 Add hint for fir_size in docu 2022-01-23 12:46:47 +01:00
Lars Gremme b44dcd2de6 Set qt5 variable direct to qmake 2022-01-23 12:38:26 +01:00
Lars Gremme 07b6ded17f Update http.py 2022-01-23 12:27:08 +01:00
Lars Gremme 0e386e79c9 Changes request by review 2022-01-23 12:25:30 +01:00