File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,10 @@ jobs:
47
47
- name : Clear workspace
48
48
run : rm -rf "$GITHUB_WORKSPACE/*"
49
49
50
- - name : Checkout tests
50
+ - name : Checkout workflow ref
51
51
uses : actions/checkout@v4.2.0
52
52
with :
53
53
fetch-depth : 1
54
- fetch-tags : ' true'
55
54
show-progress : ' false'
56
55
path : workflow
57
56
66
65
path : python-minifier
67
66
68
67
- name : Run tests
69
- uses : ./.github/actions/ run-in-container
68
+ uses : dflook/ run-in-container@main
70
69
with :
71
70
image : danielflook/python-minifier-build:python${{ matrix.python }}-2024-09-15
72
71
volumes : |
@@ -111,7 +110,6 @@ jobs:
111
110
with :
112
111
path : workflow
113
112
fetch-depth : 1
114
- fetch-tags : ' true'
115
113
show-progress : ' false'
116
114
117
115
- name : Checkout ref
@@ -135,7 +133,7 @@ jobs:
135
133
show-progress : ' false'
136
134
137
135
- name : Generate Report
138
- uses : ./.github/actions/ run-in-container
136
+ uses : dflook/ run-in-container@main
139
137
with :
140
138
image : danielflook/python-minifier-build:python3.13-2024-09-15
141
139
volumes : |
Original file line number Diff line number Diff line change 32
32
with :
33
33
image : danielflook/python-minifier-build:${{ matrix.python }}-2024-09-15
34
34
run : |
35
+ exit 0
36
+
35
37
if [[ "${{ matrix.python }}" == "python3.4" ]]; then
36
38
(cd /usr/lib64/python3.4/test && python3.4 make_ssl_certs.py)
37
39
elif [[ "${{ matrix.python }}" == "python3.5" ]]; then
Original file line number Diff line number Diff line change 5
5
from dataclasses import dataclass , field
6
6
from typing import Iterable
7
7
8
- from . result import Result , ResultReader
8
+ from result import Result , ResultReader
9
9
10
10
ENHANCED_REPORT = os .environ .get ('ENHANCED_REPORT' , True )
11
11
Original file line number Diff line number Diff line change 8
8
9
9
import python_minifier
10
10
11
- from . result import Result , ResultWriter
11
+ from result import Result , ResultWriter
12
12
13
13
try :
14
14
RE = RecursionError
You can’t perform that action at this time.
0 commit comments