Skip to content

Commit 38d3a3e

Browse files
committed
Fix
1 parent d09eec2 commit 38d3a3e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1414
fail-fast: true
1515

1616
steps:
@@ -42,7 +42,7 @@ jobs:
4242
- name: Run tests and coverage
4343
run: |
4444
poetry run black --check .
45-
poetry run coverage run --source=uplc -m pytest uplc/tests
45+
poetry run coverage run --source=uplc -m pytest tests
4646
poetry run coverage run -a --source=uplc -m uplc parse examples/fibonacci.uplc
4747
poetry run coverage run -a --source=uplc -m uplc dump examples/fibonacci.uplc --dialect legacy-aiken
4848
poetry run coverage run -a --source=uplc -m uplc dump examples/fibonacci.uplc --dialect plutus --unique-varnames

tests/test_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ def test_compiler_options(self):
17311731
p = parse(f.read())
17321732
p1 = tools.compile(p, compiler_config.OPT_O0_CONFIG)
17331733
p2 = tools.compile(p, compiler_config.OPT_O3_CONFIG)
1734-
self.assertNotEquals(
1734+
self.assertNotEqual(
17351735
p1.dumps(), p2.dumps(), "Compiler options did not change the program."
17361736
)
17371737
for i in range(5):

0 commit comments

Comments
 (0)