Skip to content

Commit

Permalink
Merge pull request #67 from kif/kif-patch-3
Browse files Browse the repository at this point in the history
Test on python 3.12
  • Loading branch information
kif authored Feb 22, 2024
2 parents 56d50ba + 044443a commit 87d9161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion src/dahu/test/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_plugin_from_function(self):
logger.error(os.linesep.join(j.output_data["error"]))

logger.info(j.input_data)
self.assert_(self.called)
self.assertTrue(self.called)
print(j.output_data)
self.assertEqual(j.output_data["result"], 25, "result OK")

Expand Down

0 comments on commit 87d9161

Please sign in to comment.