diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index e9f46d041d8..685647b873f 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -7,7 +7,7 @@ on: jobs: Benchmark: - name: Benchmark - ${{ matrix.config.task-name }} + name: ${{ matrix.config.task-name }} runs-on: ubuntu-latest timeout-minutes: 30 strategy: @@ -30,7 +30,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: ${{ matrix.config.python-version }} - id: get_date name: Get date @@ -50,7 +50,7 @@ jobs: - name: Run pytest with coverage run: | rm -rf tests/Auto-GPT-test-cassettes - pytest -n auto ${{ matrix.task }} + pytest -n auto ${{ matrix.config.task }} env: CI: true PROXY: ${{ secrets.PROXY }} diff --git a/tests/challenges/challenge_decorator/challenge_decorator.py b/tests/challenges/challenge_decorator/challenge_decorator.py index 7f721de1f32..e1fd80c45ed 100644 --- a/tests/challenges/challenge_decorator/challenge_decorator.py +++ b/tests/challenges/challenge_decorator/challenge_decorator.py @@ -17,7 +17,7 @@ 1 # we will attempt to beat 1 level above the current level for now. ) -CHALLENGE_FAILED_MESSAGE = "Challenges can sometimes fail randomly, please run this test again and if it fails reach out to us on https://discord.gg/autogpt and reach out to us on the 'challenges' channel to let us know the challenge you're struggling with." +CHALLENGE_FAILED_MESSAGE = "Challenges can sometimes fail randomly, please run this test again and if it fails reach out to us on https://discord.gg/autogpt in the 'challenges' channel to let us know the challenge you're struggling with." def challenge( diff --git a/tests/integration/agent_factory.py b/tests/integration/agent_factory.py index 714a3ac56bb..fff3867ed3b 100644 --- a/tests/integration/agent_factory.py +++ b/tests/integration/agent_factory.py @@ -93,7 +93,7 @@ def file_system_agents( Config().set_continuous_mode(False) agents.append( Agent( - ai_name="Information Retrieval Agent", + ai_name="File System Agent", memory=memory_json_file, command_registry=command_registry, ai_config=ai_config,