Skip to content

Commit c607261

Browse files
committed
should work
1 parent 39351f4 commit c607261

2 files changed

Lines changed: 39 additions & 7 deletions

File tree

.github/workflows/deploy-integration-tests.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,20 @@ jobs:
2929
# run: poetry install --no-interaction --no-root
3030
# if: steps.cache.outputs.cache-hit != 'true'
3131

32-
- name: Configure Beam
33-
env:
34-
BETA9_CONFIG: ${{ secrets.BETA9_CONFIG }}
32+
- name: Install
3533
run: |
3634
poetry export --without-hashes --format=requirements.txt > requirements.txt
3735
pip install -r requirements.txt
38-
mkdir ~/.beta9
39-
touch ~/.beta9/config.ini
40-
echo $BETA9_CONFIG >> ~/.beta9/config.ini
41-
cat ~/.beta9/config.ini
36+
37+
- name: Configure Beta9
38+
env:
39+
BETA9_TOKEN: ${{ secrets.BEAM_INTEGRATION_TEST_TOKEN }}
40+
run: |
41+
touch inputs.txt
42+
echo gateway.stage.beam.cloud >> inputs.txt
43+
echo 443 >> inputs.txt
44+
echo $BETA9_TOKEN >> inputs.txt
45+
cat inputs.txt | beta9 config create default
4246
4347
- name: Deploy
4448
run: cd tests && beta9 deploy app.py:run_tests -n integration-tests

tests/.beta9ignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Beta9 SDK
2+
.beta9ignore
3+
pyproject.toml
4+
.git
5+
.idea
6+
.python-version
7+
.vscode
8+
.venv
9+
venv
10+
__pycache__
11+
.DS_Store
12+
.config
13+
drive/MyDrive
14+
.coverage
15+
.pytest_cache
16+
.ipynb
17+
.ruff_cache
18+
.dockerignore
19+
.ipynb_checkpoints
20+
.env.local
21+
.envrc
22+
**/__pycache__/
23+
**/.pytest_cache/
24+
**/node_modules/
25+
**/.venv/
26+
*.pyc
27+
.next/
28+
.circleci

0 commit comments

Comments
 (0)