Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates ion-tests directory name for Ion 1.0 #30

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python }}

- name: Create a virtual environment
run: python3 -m venv ./venv && . venv/bin/activate
run: python -m venv ./venv && . venv/bin/activate

- run: pip install --upgrade setuptools
- run: pip install --use-pep517 -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion amazon/iontest/ion_test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def test_type_from_str(name):

def test_dir_from_version(version):
if "1.0" == version:
return "iontestdata_1_0"
return "iontestdata"
elif "1.1" == version:
return "iontestdata_1_1"
raise ValueError("Unknown Ion version: %s" % version)
Expand Down
Loading