Skip to content

Commit

Permalink
Merge pull request #22 from valory-xyz/feat/mech_tests
Browse files Browse the repository at this point in the history
updated test script for better handling of please enter based prompts…
  • Loading branch information
OjusWiZard authored Jan 20, 2025
2 parents d17800c + b9d16d8 commit 3060b03
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 172 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Quickstart Tests
on:
pull_request:
branches:
- main
pull_request: # Removed branches restriction to run on all PRs
workflow_dispatch: # Add manual trigger option

jobs:
Expand All @@ -17,10 +15,10 @@ jobs:
DOCKER_LOGS_DIR: ${GITHUB_WORKSPACE}/logs

steps:
- uses: actions/checkout@v4 # Updated from v3
- uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v5 # Updated from v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down Expand Up @@ -120,11 +118,11 @@ jobs:
- name: Upload test logs
if: always()
uses: actions/upload-artifact@v4 # Updated from v3
uses: actions/upload-artifact@v4
with:
name: test-logs
path: |
logs/
/logs/
.env
retention-days: 30 # Added retention period
retention-days: 30
Loading

0 comments on commit 3060b03

Please sign in to comment.