Skip to content

Commit 8eafd41

Browse files
author
chenyunliang520
committed
Add DNS and Python environment diagnostics to SSL tests workflow and fix RST license link syntax
1 parent 38ccc51 commit 8eafd41

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/tests-ssl.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -229,24 +229,24 @@ jobs:
229229
- name: Print DNS and Python environment
230230
run: |
231231
python - << 'EOF'
232-
import asyncio
233-
import dns
234-
import dns.version
235-
import dns.asyncresolver
232+
import asyncio
233+
import dns
234+
import dns.version
235+
import dns.asyncresolver
236236
237-
print("Python version:")
238-
import sys; print(sys.version)
237+
print("Python version:")
238+
import sys; print(sys.version)
239239
240-
print("\nEvent loop policy:")
241-
print(asyncio.get_event_loop_policy())
240+
print("\nEvent loop policy:")
241+
print(asyncio.get_event_loop_policy())
242242
243-
print("\nDnspython version:")
244-
print(dns.version.version)
243+
print("\nDnspython version:")
244+
print(dns.version.version)
245245
246-
print("\nAsync resolver instance:")
247-
r = dns.asyncresolver.Resolver()
248-
print(r)
249-
EOF
246+
print("\nAsync resolver instance:")
247+
r = dns.asyncresolver.Resolver()
248+
print(r)
249+
EOF
250250
251251
- name: Run tests
252252
env:

0 commit comments

Comments
 (0)