mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-30 20:34:25 +01:00
10 lines
219 B
Python
10 lines
219 B
Python
import pytest
|
|
from agbenchmark.Challenge import Challenge
|
|
from agbenchmark.challenges.define_task_types import ChallengeData
|
|
from abc import abstractmethod
|
|
|
|
|
|
@pytest.mark.basic
|
|
class BasicChallenge(Challenge):
|
|
pass
|