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

4.0 #39

Merged
merged 26 commits into from
Jun 28, 2023
Merged

4.0 #39

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b6b4e66
actions
PietroPasotti Jun 5, 2023
34565e7
refactored ctxvar
PietroPasotti Jun 5, 2023
a4019ce
fixed itest
PietroPasotti Jun 5, 2023
5c079d5
new api
PietroPasotti Jun 7, 2023
6ad9f3a
fix ci
PietroPasotti Jun 7, 2023
91c1ea1
out.logs type fix
PietroPasotti Jun 8, 2023
b4390f6
simplified consistency checker code
PietroPasotti Jun 8, 2023
27806dc
simplified consistency checker code
PietroPasotti Jun 8, 2023
1b68e55
fixed spacing
PietroPasotti Jun 22, 2023
7c7e7dc
Merge pull request #37 from canonical/actions
PietroPasotti Jun 22, 2023
b272b28
flattened status
PietroPasotti Jun 22, 2023
eed1b08
support for custom events
PietroPasotti Jun 22, 2023
df145e3
docs
PietroPasotti Jun 22, 2023
fe16419
reverted overzealous storedstate owner_path replace
PietroPasotti Jun 22, 2023
8a706ed
ben's nit
PietroPasotti Jun 23, 2023
fb5ea7f
Merge pull request #40 from canonical/rework-status-history
PietroPasotti Jun 23, 2023
2343cbb
stored state default
PietroPasotti Jun 23, 2023
bcb4008
Merge branch '4.0' of github.com:canonical/ops-scenario into 4.0
PietroPasotti Jun 23, 2023
9dbb6b6
type error in __init__.__all__
PietroPasotti Jun 23, 2023
128bd21
missing headers
PietroPasotti Jun 23, 2023
68819c7
refactored to use dotted event path syntax
PietroPasotti Jun 27, 2023
431ee8e
Merge pull request #41 from canonical/custom-events
PietroPasotti Jun 27, 2023
6423b15
secret events no suffix
PietroPasotti Jun 27, 2023
530faea
fixed tox env, python 3.8 compat fix
PietroPasotti Jun 28, 2023
c56e01a
py3.8 badge
PietroPasotti Jun 28, 2023
3a7a4bf
removed dependency from trigger in sequences.py
PietroPasotti Jun 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/quality_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
- name: Run lint tests
run: tox -vve lint

unit-test:
Expand All @@ -34,8 +34,8 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
- name: Run unit tests
run: tox -vve unit