Skip to content

Commit

Permalink
Fix workflow later
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Feb 7, 2024
1 parent 95dc51b commit e6ff80e
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/install-test.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
name: Evaluation Installation Test

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
install_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: run installation
run: ./install.sh

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: install test deps
run: |
python -m pip install --upgrade pip
pip install -r OasisPiWind/tests/requirements.in
- name: run PiWind test
run: pytest OasisPiWind/tests/test_piwind_integration.py -v --use-running-containers --docker-compose=oasis-platform.yml -k all_outputs
env:
WORKER_API_VER: 'v1'
#on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
# workflow_dispatch:
#
#jobs:
# install_test:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
#
# - name: run installation
# run: ./install.sh
#
# - name: Setup Python
# uses: actions/setup-python@v4
# with:
# python-version: '3.10'
#
# - name: install test deps
# run: |
# python -m pip install --upgrade pip
# pip install -r OasisPiWind/tests/requirements.in
#
# - name: run PiWind test
# run: pytest OasisPiWind/tests/test_piwind_integration.py -v --use-running-containers --docker-compose=oasis-platform.yml -k all_outputs
# env:
# WORKER_API_VER: 'v1'

0 comments on commit e6ff80e

Please sign in to comment.