-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (50 loc) · 1.76 KB
/
vendor_develop.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
name: Django Vendor Develop
on:
pull_request:
branches:
- 'develop'
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install mistune==0.8.4
python -m pip install m2r
python -m pip install -e .[dev,authorizenet,stripe,test]
- name: Run Core Tests
run: |
cd develop
python manage.py test
python manage.py makemigrations --check --dry-run
env:
DJANGO_DEBUG: 1
# DATABASE_URL: postgres://postgres:[email protected]:5432/vendor # Using default SQLite
- name: Run Base Processor Tests
run: |
cd develop
python manage.py test vendor.tests.test_processor.BaseProcessorTests
env:
DJANGO_DEBUG: 1
# DATABASE_URL: postgres://postgres:[email protected]:5432/vendor # Using default SQLite
# - name: Run Authorize.Net Tests
# run: |
# cd develop
# python manage.py test vendor.tests.test_processor.AuthorizeNetProcessorTests
# env:
# DJANGO_DEBUG: 1
# # DATABASE_URL: postgres://postgres:[email protected]:5432/vendor # Using default SQLite
# AUTHORIZE_NET_API_ID: ${{ secrets.AUTHORIZE_NET_API_ID }}
# AUTHORIZE_NET_TRANSACTION_KEY: ${{ secrets.AUTHORIZE_NET_TRANSACTION_KEY }}
# AUTHORIZE_NET_TRANSACTION_TYPE_DEFAULT: "authCaptureTransaction"
# VENDOR_PAYMENT_PROCESSOR: "authorizenet.AuthorizeNetProcessor"