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

0.0.33 #154

Merged
merged 42 commits into from
Jun 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e03e444
feat/padatious_samples_in_bus (#133)
JarbasAl Apr 24, 2023
f7ca3da
Increment Version to 0.0.33a1
JarbasAl Apr 24, 2023
7d04650
Update Changelog
JarbasAl Apr 24, 2023
5ab24da
Update publish_alpha.yml
JarbasAl Apr 24, 2023
ebfac7e
Increment Version to 0.0.33a2
JarbasAl Apr 24, 2023
3609c3e
Update Changelog
JarbasAl Apr 24, 2023
64e89b0
fix/core_root_location (#134)
JarbasAl Apr 29, 2023
9e364e1
Increment Version to 0.0.33a3
JarbasAl Apr 29, 2023
e5a8b24
Update Changelog
JarbasAl Apr 29, 2023
2f27b27
codecov automation (#135)
JarbasAl Apr 30, 2023
841ae3d
codecov (#136)
JarbasAl Apr 30, 2023
c6401a5
fix/new_bug (#138)
JarbasAl May 1, 2023
cf36c86
Increment Version to 0.0.33a4
JarbasAl May 1, 2023
b22332f
Update Changelog
JarbasAl May 1, 2023
ea68e0d
feat/skill_api (#139)
JarbasAl May 1, 2023
c3fde85
Increment Version to 0.0.33a5
JarbasAl May 1, 2023
b184e99
Update Changelog
JarbasAl May 1, 2023
440eabf
port LF time utils (#141)
emphasize May 4, 2023
4f21284
Increment Version to 0.0.33a6
JarbasAl May 4, 2023
9586b18
Update Changelog
JarbasAl May 4, 2023
e68a6b8
Configurable skills base directory (#143)
NeonDaniel May 17, 2023
3d595e3
Increment Version to 0.0.33a7
JarbasAl May 17, 2023
40dc6b7
Update Changelog
JarbasAl May 17, 2023
d9f850a
Add logging to diagnose process lifecycle (#144)
NeonDaniel May 17, 2023
1bb5729
Increment Version to 0.0.33a8
JarbasAl May 17, 2023
5e43850
Update Changelog
JarbasAl May 17, 2023
f5e6f65
Enable Log name and level overrides from envvars (#147)
NeonDaniel May 24, 2023
e71788e
Increment Version to 0.0.33a9
JarbasAl May 24, 2023
18f52dd
Update Changelog
JarbasAl May 24, 2023
5773801
Update readme.md
JarbasAl May 26, 2023
0301728
fix/filewatcher (#148)
JarbasAl May 29, 2023
a15bf18
Increment Version to 0.0.33a10
JarbasAl May 29, 2023
3e6e651
Update Changelog
JarbasAl May 29, 2023
7b1287a
loosen pexpect requirement (#153)
mikejgray May 30, 2023
c58dd56
Increment Version to 0.0.33a11
NeonDaniel May 30, 2023
3cb9589
Update Changelog
NeonDaniel May 30, 2023
fe07c9a
Update docstrings for FileWatcher class and add unit test coverage (#…
NeonDaniel May 31, 2023
6040f35
Increment Version to 0.0.33a12
JarbasAl May 31, 2023
0795158
Update Changelog
JarbasAl May 31, 2023
c11e9e9
Add unit test coverage for SkillApi (#145)
NeonDaniel May 31, 2023
4e4f8f1
Increment Version to 0.0.33
NeonDaniel Jun 1, 2023
f35d954
Update Changelog
NeonDaniel Jun 1, 2023
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
8 changes: 6 additions & 2 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ jobs:
- name: Install package
run: |
pip install .[all]
- uses: pypa/[email protected].0
- uses: pypa/[email protected].7
with:
# Ignore setuptools vulnerability we can't do much about
# Ignore requests vulnerability
# Ignore Setuptools vulnerability
ignore-vulns: |
GHSA-r9hx-vwmv-q579
GHSA-r9hx-vwmv-q579
GHSA-j8r2-6x86-q33q
PYSEC-2022-43012
41 changes: 41 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Run CodeCov
NeonDaniel marked this conversation as resolved.
Show resolved Hide resolved
on:
push:
branches:
- dev
workflow_dispatch:

jobs:
run:
runs-on: ubuntu-latest
env:
PYTHON: '3.9'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev
python -m pip install build wheel
- name: Install repo
run: |
pip install .[extras]
- name: Generate coverage report
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./test/unittests --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
fail_ci_if_error: true
files: ./coverage.xml,!./cache
flags: unittests
name: codecov-umbrella
verbose: true
2 changes: 0 additions & 2 deletions .github/workflows/publish_alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ jobs:
run: |
python setup.py sdist bdist_wheel
- name: Publish to PyPI
if: False
# TODO: Remove test patch above
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{secrets.PYPI_TOKEN}}
Loading