Skip to content

Commit 8ab2529

Browse files
committed
Update changelog and noxfile
1 parent 52a17f5 commit 8ab2529

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
- Bug #594: Fix may_<trigger> always returning false for internal transitions (thanks @a-schade)
66
- PR #592: Pass investigated transition to `EventData` context in 'may' check (thanks @msclock)
7+
- PR #634: Improve the handling of diagrams when working with parallel states, especially when using the show_roi option (thanks @seanxlliu)
8+
- '_anchor' suffix has been removed for (py)graphviz cluster node anchors
9+
- local testing switched from [tox](https://github.com/tox-dev/tox) to [nox](https://github.com/wntrblm/nox)
10+
- PR #633: Remove surrounding whitespace from docstrings (thanks @artofhuman)
711

812
## 0.9.0 (September 2022)
913

noxfile.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
import nox
22

3+
34
python = ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11"]
45
nox.options.stop_on_first_error = True
56

7+
68
@nox.session(
79
python=python[-1]
810
)
911
def test_check_manifest(session):
1012
session.install("check-manifest")
1113
session.run("check-manifest")
1214

15+
1316
@nox.session(
1417
python=python[-1]
1518
)
1619
def test_mypy(session):
1720
session.install(".")
18-
session.install("-rrequirements_mypy.txt")
21+
session.install("-rrequirements_test.txt")
1922
session.install("-rrequirements_diagrams.txt")
20-
session.run("mypy", "transitions")
23+
session.install("-rrequirements_mypy.txt")
24+
session.run("pytest", "-nauto", "--doctest-modules", "tests/")
25+
2126

2227
@nox.session(
2328
python=python
@@ -28,6 +33,7 @@ def test(session):
2833
session.install("-rrequirements_diagrams.txt")
2934
session.run("pytest", "-nauto", "tests/")
3035

36+
3137
@nox.session(
3238
python=python[-1]
3339
)

0 commit comments

Comments
 (0)