Pull latest tester image, add .summary hover color

This commit is contained in:
gilbn 2022-10-26 22:37:33 +02:00
parent 5502987556
commit 6ca76d5cc2
2 changed files with 13 additions and 1 deletions

View File

@ -104,12 +104,16 @@ class CI(SetEnvs):
aws_secret_access_key=self.s3_secret)
def run(self,tags: list) -> None:
"""Will iterate over all the tags running container_test() on each tag multithreaded.
"""Will iterate over all the tags running container_test() on each tag, multithreaded.
Also does a pull of the linuxserver/tester:latest image before running container_test.
Args:
`tags` (list): All the tags we will test on the image.
"""
self.logger.info("Pulling ghcr.io/linuxserver/tester:latest")
self.client.images.pull(repository="ghcr.io/linuxserver/tester", tag="latest") # Pulls latest tester image.
thread_pool = ThreadPool(processes=10)
thread_pool.map(self.container_test,tags)
display = Display(size=(1920, 1080)) # Setup an x virtual frame buffer (Xvfb) that Selenium can use during the tests.

View File

@ -58,6 +58,10 @@
color: rgba(218, 59, 138);
}
.summary:hover {
color: rgb(188, 52, 120);
}
.styled-table {
border: solid 1px rgb(255 255 255 / 10%);
}
@ -449,6 +453,10 @@
color: darkorange;
font-weight: bold;
}
.warning-summary:hover {
color: #ff8c00db;
}
</style>
</head>