@@ -109,6 +109,16 @@ jobs:
109
109
with :
110
110
virtualenvs-create : true
111
111
virtualenvs-in-project : true
112
+ - name : Install Emacs
113
+ if : ${{ github.event.inputs.debug == 'on' }}
114
+ run : |
115
+ sudo apt install emacs
116
+ - name : Setup tmate session
117
+ if : ${{ github.event.inputs.debug == 'on' }}
118
+ uses : mxschmitt/action-tmate@v3
119
+ with :
120
+ detached : true
121
+ timeout-minutes : 60
112
122
- name : Install Basic Dependencies
113
123
run : |
114
124
poetry config virtualenvs.in-project true
@@ -202,6 +212,16 @@ jobs:
202
212
with :
203
213
virtualenvs-create : true
204
214
virtualenvs-in-project : true
215
+ - name : Install Emacs
216
+ if : ${{ github.event.inputs.debug == 'on' }}
217
+ run : |
218
+ sudo apt install emacs
219
+ - name : Setup tmate session
220
+ if : ${{ github.event.inputs.debug == 'on' }}
221
+ uses : mxschmitt/action-tmate@v3
222
+ with :
223
+ detached : true
224
+ timeout-minutes : 60
205
225
- name : Install Dependencies
206
226
run : |
207
227
poetry config virtualenvs.in-project true
@@ -295,6 +315,16 @@ jobs:
295
315
with :
296
316
virtualenvs-create : true
297
317
virtualenvs-in-project : true
318
+ - name : Install Emacs
319
+ if : ${{ github.event.inputs.debug == 'on' }}
320
+ run : |
321
+ sudo apt install emacs
322
+ - name : Setup tmate session
323
+ if : ${{ github.event.inputs.debug == 'on' }}
324
+ uses : mxschmitt/action-tmate@v3
325
+ with :
326
+ detached : true
327
+ timeout-minutes : 60
298
328
- name : Install Dependencies
299
329
run : |
300
330
poetry config virtualenvs.in-project true
@@ -399,6 +429,16 @@ jobs:
399
429
with :
400
430
virtualenvs-create : true
401
431
virtualenvs-in-project : true
432
+ - name : Install Emacs
433
+ if : ${{ github.event.inputs.debug == 'on' }}
434
+ run : |
435
+ sudo apt install emacs
436
+ - name : Setup tmate session
437
+ if : ${{ github.event.inputs.debug == 'on' }}
438
+ uses : mxschmitt/action-tmate@v3
439
+ with :
440
+ detached : true
441
+ timeout-minutes : 60
402
442
- name : Install Dependencies
403
443
run : |
404
444
poetry config virtualenvs.in-project true
@@ -504,6 +544,16 @@ jobs:
504
544
with :
505
545
virtualenvs-create : true
506
546
virtualenvs-in-project : true
547
+ - name : Install Emacs
548
+ if : ${{ github.event.inputs.debug == 'on' }}
549
+ run : |
550
+ sudo apt install emacs
551
+ - name : Setup tmate session
552
+ if : ${{ github.event.inputs.debug == 'on' }}
553
+ uses : mxschmitt/action-tmate@v3
554
+ with :
555
+ detached : true
556
+ timeout-minutes : 60
507
557
- name : Install Oracle Client
508
558
run : |
509
559
curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
@@ -520,11 +570,6 @@ jobs:
520
570
poetry add django-filter@^${{ matrix.filter-version }} --optional
521
571
poetry add djangorestframework@${{ matrix.drf-version }} --optional
522
572
poetry install -E all --with oracle
523
- # - name: Setup tmate session
524
- # uses: mxschmitt/action-tmate@v3
525
- # with:
526
- # detached: true
527
- # timeout-minutes: 60
528
573
- name : Run Full Unit Tests
529
574
run : |
530
575
poetry run pytest -s
0 commit comments