Skip to content

Commit

Permalink
Updates ion-tests directory name for Ion 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgregg committed Jun 7, 2024
1 parent 1815f9c commit 14d63d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 14d63d6

Please sign in to comment.