• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Gallopsled / pwntools / 05783e98c90491b146da8c630a8227427a18263b

pending completion
05783e98c90491b146da8c630a8227427a18263b

push

github-actions

web-flow
Change temp path in binutils install script (#2097)

Use $TMPDIR first. If $TMPDIR is unset/empty, use /tmp
(AFAIK most distros don't set $TMPDIR by default)

3904 of 6421 branches covered (60.8%)

12255 of 16708 relevant lines covered (73.35%)

0.73 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

69.23
/pwnlib/filesystem/path.py
1
import six
1✔
2
import tempfile
1✔
3

4
if six.PY3:
1!
5
    from pathlib import *
×
6
else:
7
    from pathlib2 import *
1✔
8

9
@classmethod
1✔
10
def mktemp(cls):
11
    return cls(tempfile.mktemp())
×
12

13
@classmethod
1✔
14
def mkdtemp(cls):
15
    return cls(tempfile.mkdtemp())
×
16

17
Path.mktemp = mktemp
1✔
18
Path.mkdtemp = mkdtemp
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc