Merge branch 'Significant-Gravitas:master' into 0xf333_branch

pull/2012/head
0x333 2023-04-16 17:57:05 -04:00 committed by GitHub
commit b8baa549cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -36,7 +36,7 @@ jobs:
- name: Run unittest tests with coverage
run: |
coverage run --source=autogpt -m unittest discover tests
pytest --cov=autogpt --without-integration --without-slow-integration
- name: Generate coverage report
run: |

View File

@ -4,6 +4,8 @@ import os
import sys
import unittest
import pytest
from autogpt.memory.local import LocalCache
@ -21,6 +23,7 @@ def mock_config() -> dict:
)
@pytest.mark.integration_test
class TestLocalCache(unittest.TestCase):
"""Tests for LocalCache class"""