Skip to content

Commit b3bba8c

Browse files
committed
unit tests don't need credentials since they are mock test
1 parent aac9453 commit b3bba8c

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.github/workflows/release-with-tag.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Release
66
on:
77
push:
88
tags:
9-
- '*'
9+
- "*"
1010

1111
jobs:
1212
release:
@@ -23,11 +23,6 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Test with pytest
26-
env:
27-
RINGCENTRAL_SERVER_URL: ${{secrets.RINGCENTRAL_SERVER_URL}}
28-
RINGCENTRAL_CLIENT_ID: ${{secrets.RINGCENTRAL_CLIENT_ID}}
29-
RINGCENTRAL_CLIENT_SECRET: ${{secrets.RINGCENTRAL_CLIENT_SECRET}}
30-
RINGCENTRAL_JWT_TOKEN: ${{secrets.RINGCENTRAL_JWT_TOKEN}}
3126
run: |
3227
#Create virtual environment
3328
python -m venv venv

.github/workflows/unit-tests.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121

2222
- name: Test with pytest
23-
env:
24-
RINGCENTRAL_SERVER_URL: ${{secrets.RINGCENTRAL_SERVER_URL}}
25-
RINGCENTRAL_CLIENT_ID: ${{secrets.RINGCENTRAL_CLIENT_ID}}
26-
RINGCENTRAL_CLIENT_SECRET: ${{secrets.RINGCENTRAL_CLIENT_SECRET}}
27-
RINGCENTRAL_JWT_TOKEN: ${{secrets.RINGCENTRAL_JWT_TOKEN}}
2823
run: |
2924
#Create virtual environment
3025
python -m venv venv

0 commit comments

Comments
 (0)