Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 19 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,34 @@ jobs:
fail-fast: false
matrix:
include:
- name: Linux py38
- name: Linux py 3.8
os: ubuntu-latest
pyversion: '3.8'
- name: Linux py39
- name: Linux py 3.9
os: ubuntu-latest
pyversion: '3.9'
- name: Linux py 3.10
os: ubuntu-latest
pyversion: '3.10'
- name: Linux py 3.11
os: ubuntu-latest
pyversion: '3.11'
- name: Linux py 3.12
os: ubuntu-latest
pyversion: '3.12'
- name: Linux py 3.13
os: ubuntu-latest
pyversion: '3.13'
#
- name: Linux pypy3
- name: Linux pypy
os: ubuntu-latest
pyversion: 'pypy3.9'
- name: Windows py38
- name: Windows
os: windows-latest
pyversion: '3.8'
- name: MacOS py38
pyversion: '3.13'
- name: MacOS
os: macos-latest
pyversion: '3.8'
pyversion: '3.13'

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion tests/test_parser2.py
Original file line number Diff line number Diff line change
Expand Up @@ -855,8 +855,9 @@ def test_async_and_await(self):
assert "Promise" in evaljs(js + "spam()")
assert "Promise" in evaljs(js + "eggs()")

assert "42" in evaljs(js + "foo()")
assert "42" in evaljs(js + "spam()")
assert "42" not in evaljs(js + "eggs()")
# assert "42" in evaljs(js + "eggs()") # depends on the nodejs


class TestClasses:
Expand Down
Loading