Skip to content

Commit

Permalink
Action unit test and process test versions updated (#208)
Browse files Browse the repository at this point in the history
* version changes to setup and checkout

* versions updated

* setuptools package upgrade specified

* setuptools upgrade specified
  • Loading branch information
PennyHow authored Nov 2, 2023
1 parent 6600230 commit 7261c27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/process_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
name: process_test
steps:
- name: Install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: "main"
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -22,6 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install wheel
python3 -m pip install --upgrade setuptools
cd $GITHUB_WORKSPACE/main
pip install .
- name: Clone AWS Level 0 data repo for testing
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@ jobs:
python-version: ['3.8','3.9','3.10']
steps:
- name: Install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install Bottleneck
python3 -m pip install --upgrade pip
python3 -m pip install Bottleneck
python3 -m pip install --upgrade setuptools
cd $GITHUB_WORKSPACE
pip install .
- name: Run unit tests
Expand Down

0 comments on commit 7261c27

Please sign in to comment.