Skip to content

Commit 1b26a1f

Browse files
committed
Small improvements
1 parent 916cbce commit 1b26a1f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/charts_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
run: poetry build
3838

3939
- name: Run tests
40-
run: poetry run pytest -n 4 --verbose -x
40+
run: poetry run pytest --verbose -x

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
name: Build Docker Image
151151
runs-on: ubuntu-latest
152152
needs: [build-docker-image]
153-
if: !cancelled() && needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
153+
if: (!cancelled()) && needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
154154
steps:
155155
- name: Checkout repository
156156
uses: actions/checkout@v3
@@ -168,20 +168,20 @@ jobs:
168168
python-tests:
169169
name: Python Tests
170170
needs: [changes, build-template]
171-
if: !cancelled() && needs.changes.outputs.python == 'true' || needs.changes.outputs.template == 'true'
171+
if: (!cancelled()) && needs.changes.outputs.python == 'true' || needs.changes.outputs.template == 'true'
172172
uses: ./.github/workflows/python_tests.yml
173173
secrets: inherit
174174

175175
js-tests:
176176
name: JS Tests
177177
needs: [changes]
178-
if: !cancelled() && needs.changes.outputs.js == 'true' || needs.changes.outputs.template == 'true'
178+
if: (!cancelled()) && needs.changes.outputs.js == 'true' || needs.changes.outputs.template == 'true'
179179
uses: ./.github/workflows/js_tests.yml
180180
secrets: inherit
181181

182182
release:
183183
needs: [python-tests, js-tests]
184-
if: !cancelled() && !contains(needs.*.result, 'failure') && (needs.changes.outputs.js == 'true' || needs.changes.outputs.python == 'true')
184+
if: (!cancelled()) && !contains(needs.*.result, 'failure') && (needs.changes.outputs.js == 'true' || needs.changes.outputs.python == 'true')
185185
name: Release
186186
runs-on: ubuntu-latest
187187
steps:

template/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ipykernel==6.29.3
44
ipython==8.22.2
55

66
# Latest version for
7-
e2b_code_interpreter_data_extraction
7+
e2b_charts
88

99
# Other packages
1010
aiohttp==3.9.3

0 commit comments

Comments
 (0)