Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ pkgs.python3.pkgs.buildPythonPackage rec {
];

dependencies = with pkgs.python3.pkgs; [
future
jsonschema
psutil
];
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ name = "vmrunner"
version = "0.16.0"
description = "A qemu convenience wrapper for writing integration tests"
dependencies = [
"future",
"jsonschema",
"psutil",
]
Expand Down
2 changes: 1 addition & 1 deletion vmrunner/bin/qemu-ifdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
# ==============================================================================
# Simple tap-networking for IncludeOS on Qemu
# ==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion vmrunner/bin/qemu-ifup
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
# ==============================================================================
# Simple tap-networking for IncludeOS on Qemu
# ==============================================================================
Expand Down
2 changes: 0 additions & 2 deletions vmrunner/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

# pylint: disable=invalid-name

from __future__ import print_function

import os
import sys
import argparse
Expand Down
2 changes: 1 addition & 1 deletion vmrunner/prettify.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
""" pretty printer for vmrunner """

# pylint: disable=invalid-name,line-too-long

from __future__ import print_function
from builtins import str
from builtins import range

Expand Down
4 changes: 1 addition & 3 deletions vmrunner/validate_vm.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
""" validate VM configuration against schema """

# pylint: disable=invalid-name

from __future__ import print_function

import json
import sys
import os
Expand Down
4 changes: 0 additions & 4 deletions vmrunner/vmrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

# pylint: disable=line-too-long, too-many-lines, invalid-name, fixme, broad-exception-raised, broad-exception-caught, too-many-arguments, too-many-branches, too-many-statements, too-many-instance-attributes, too-many-locals

from __future__ import print_function
from __future__ import absolute_import


from builtins import hex
from builtins import chr
from builtins import str
Expand Down