Skip to content

Commit

Permalink
Update autopep8.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoodsend committed Nov 4, 2023
1 parent f11c2ea commit 9e39a7d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion polycotylus/_alpine.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def test(self, package):
sudo apk add /pkg/{package.name}
{self.project.test_command}
""", volumes=volumes, tty=True, root=False, post_mortem=True,
architecture=self.docker_architecture)
architecture=self.docker_architecture)


class Alpine317(Alpine):
Expand Down
2 changes: 1 addition & 1 deletion polycotylus/_arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test(self, package):
sudo pacman -U --noconfirm /pkg/{package.name}
{self.project.test_command}
""", volumes=volumes, tty=True, root=False, post_mortem=True,
architecture=self.docker_architecture)
architecture=self.docker_architecture)

@classmethod
@lru_cache()
Expand Down
2 changes: 1 addition & 1 deletion polycotylus/_fedora.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def test(self, rpm):
sudo dnf install -y /pkg/{rpm.name}
{test_command}
""", volumes=volumes, tty=True, root=False, post_mortem=True,
architecture=self.docker_architecture)
architecture=self.docker_architecture)


class Fedora37(Fedora):
Expand Down
2 changes: 1 addition & 1 deletion polycotylus/_opensuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def test(self, package):
sudo zypper install --allow-unsigned-rpm -y /pkg/{package.name}
{test_command}
""", volumes=volumes, tty=True, root=False, post_mortem=True,
architecture=self.docker_architecture)
architecture=self.docker_architecture)


def _join(args):
Expand Down
4 changes: 2 additions & 2 deletions polycotylus/_void.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def build(self):
ln -s / masterdir
./xbps-src -1 pkg {self.package_name}
""", "--privileged", tty=True, post_mortem=True, volumes=volumes,
architecture=self.docker_architecture)
architecture=self.docker_architecture)
name = f"{self.package_name}-{self.project.version}_1.{self.architecture}{self.libc_tag}.xbps"
(self.distro_root / self.libc / name).write_bytes(container.file(f"/io/hostdir/binpkgs/{name}"))
repodata = f"{self.architecture}{self.libc_tag}-repodata"
Expand All @@ -233,7 +233,7 @@ def test(self, package):
sudo xbps-install -ySu -R /pkg/ xbps {self.package_name}
{self.project.test_command}
""", volumes=volumes, tty=True, root=False, post_mortem=True,
architecture=self.docker_architecture)
architecture=self.docker_architecture)

@lru_cache()
def _void_packages_head(self):
Expand Down

0 comments on commit 9e39a7d

Please sign in to comment.