We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139665a commit 2cd05c2Copy full SHA for 2cd05c2
.github/workflows/python-package.yml
@@ -32,6 +32,6 @@ jobs:
32
poetry install
33
- name: Test with pytest
34
run: |
35
- poetry run pytest -s -x
+ poetry run pytest -s -x -k test_
36
env:
37
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
tests/core/computer/files/test_files.py
@@ -45,7 +45,7 @@ def test_edit_original_text_not_in_filedata(self):
45
46
# Assert
47
mock_open.assert_any_call("example/filepath/file", "r")
48
- self.assertEquals(
+ self.assertEqual(
49
str(context_manager.exception),
50
"Original text not found. Did you mean one of these? foobar",
51
)
0 commit comments