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

Bump eslint from 9.6.0 to 9.11.1 #229

Merged
merged 1 commit into from
Oct 28, 2024

Bump eslint from 9.6.0 to 9.11.1

4c6060c
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Bump eslint from 9.6.0 to 9.11.1 #229

Bump eslint from 9.6.0 to 9.11.1
4c6060c
Select commit
Loading
Failed to load commit list.
GitHub Actions / Example Pytest Report failed Oct 1, 2024 in 0s

3 tests run, 0 skipped, 2 failed.

Annotations

Check failure on line 10 in integration-tests/python/test_sample.py

See this annotation in the file changed.

@github-actions github-actions / Example Pytest Report

test_sample.test_which_fails

AssertionError: assert 'test' == 'xyz'
  - xyz
  + test
Raw output
def test_which_fails():
        event = { 'attr': 'test'}
>       assert event['attr'] == 'xyz'
E       AssertionError: assert 'test' == 'xyz'
E         - xyz
E         + test

integration-tests/python/test_sample.py:10: AssertionError

Check failure on line 14 in integration-tests/python/test_sample.py

See this annotation in the file changed.

@github-actions github-actions / Example Pytest Report

test_sample.test_with_error

AttributeError: 'dict' object has no attribute 'attr'
Raw output
def test_with_error():
        event = { 'attr': 'test'}
>       assert event.attr == 'test'
E       AttributeError: 'dict' object has no attribute 'attr'

integration-tests/python/test_sample.py:14: AttributeError