mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
Merge pull request #118442 from Ekleog/nixos-tests
Add nixos tests with names starting by A or B to all relevant packages
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, buildbot, setuptoolsTrial, mock, twisted,
|
||||
future, coreutils }:
|
||||
future, coreutils, nixosTests }:
|
||||
|
||||
buildPythonPackage (rec {
|
||||
pname = "buildbot-worker";
|
||||
@@ -19,6 +19,10 @@ buildPythonPackage (rec {
|
||||
--replace /usr/bin/tail "${coreutils}/bin/tail"
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
smoke-test = nixosTests.buildbot;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://buildbot.net/";
|
||||
description = "Buildbot Worker Daemon";
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
, geckodriver
|
||||
, urllib3
|
||||
, xorg
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
|
||||
@@ -47,6 +48,10 @@ buildPythonPackage rec {
|
||||
cp -v x_ignore_nofocus.so selenium/webdriver/firefox/${if stdenv.is64bit then "amd64" else "x86"}/
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
testing-bitwarden = nixosTests.bitwarden;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "The selenium package is used to automate web browser interaction from Python";
|
||||
homepage = "http://www.seleniumhq.org";
|
||||
|
||||
Reference in New Issue
Block a user