-
Notifications
You must be signed in to change notification settings - Fork 14
140 lines (113 loc) · 3.67 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: App Tests
on:
push:
# branches:
# - main
# - rel_*
pull_request:
defaults:
run:
# -l: use login shell (required when using Conda)
shell: bash -l {0}
env:
PYTEST_ADDOPTS: --color=yes
jobs:
component_e2e_testing:
name: E2E testing (${{ matrix.os }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os:
- linux
- win64
# - macos
include:
- os: linux
os-version: ubuntu-latest
- os: win64
os-version: windows-latest
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
activate-environment: watertap-ui-env
- name: Install Electron JS dependencies
run: |
npm --prefix electron clean-install
- name: Install frontend JS dependencies
run: |
npm --prefix electron/ui clean-install
- name: get idaes extensions
run: idaes get-extensions
- name: Install watertap-ui Python package
run: |
pip install --progress-bar off .
# - name: Install my fork of watertap
# working-directory: ../
# run: git clone https://github.com/MichaelPesce/watertap.git && cd watertap && git fetch --all && git checkout build-options && pip install --progress-bar off .
# - name: Install correct branch of watertap
# working-directory: ../
# run: git clone https://github.com/MichaelPesce/watertap.git && cd watertap && pip install --progress-bar off .
- name: Display installed environment
run: |
conda env export --no-builds
# - name: run pytest
# working-directory: backend
# env:
# PYTHONPATH: ${{ env.GITHUB_WORKSPACE }}/backend
# run: pytest tests -v
- name: run backend server
run: uvicorn --app-dir backend/app main:app --reload --host 0.0.0.0 --port 8001 & sleep 30
- name: run frontend
run: npm --prefix electron/ui start & sleep 30
- name: run component tests
run: npm --prefix electron/ui run test
- name: Cypress e2e tests
working-directory: electron/ui
timeout-minutes: 15
run: |
echo "$(npm bin)"
"$(npm bin)"/cypress run
- name: Upload artifact for screenshots & videos
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress_results-${{ matrix.os }}
path: |
electron/ui/cypress/screenshots/
electron/ui/cypress/videos/
pytest:
name: pytest (${{ matrix.os }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os:
- linux
- win64
# - macos
include:
- os: linux
os-version: ubuntu-latest
- os: win64
os-version: windows-latest
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
activate-environment: watertap-ui-env
- name: Install watertap-ui Python package
run: |
pip install --progress-bar off .
# - name: Install my fork of watertap
# working-directory: ../
# run: git clone https://github.com/MichaelPesce/watertap.git && cd watertap && git fetch --all && git checkout build-options && pip install --progress-bar off .
- name: get idaes extensions
run: idaes get-extensions
- name: Run pytest
working-directory: backend
run: |
pytest tests -v