File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff line change 11# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- # We import some fixtures that are unused. Disable that too.
5- # pylint:disable=unused-import
6-
74"""Imported by pytest at the start of every test session.
85
96# Fixture Goals
2522import inspect
2623import json
2724import os
28- import re
2925import shutil
3026import sys
3127import tempfile
3228from pathlib import Path
33- from typing import Dict
3429
3530import pytest
3631
5752
5853
5954METRICS = get_metrics_logger ()
60- PHASE_REPORT_KEY = pytest .StashKey [Dict [str , pytest .CollectReport ]]()
55+ PHASE_REPORT_KEY = pytest .StashKey [dict [str , pytest .CollectReport ]]()
6156
6257
6358def pytest_addoption (parser ):
@@ -456,19 +451,13 @@ def rootfs_rw():
456451
457452@pytest .fixture
458453def uvm_plain (microvm_factory , guest_kernel_linux_5_10 , rootfs ):
459- """Create a vanilla VM, non-parametrized
460- kernel: 5.10
461- rootfs: Ubuntu 24.04
462- """
454+ """Create a vanilla VM, non-parametrized"""
463455 return microvm_factory .build (guest_kernel_linux_5_10 , rootfs )
464456
465457
466458@pytest .fixture
467459def uvm_plain_rw (microvm_factory , guest_kernel_linux_5_10 , rootfs_rw ):
468- """Create a vanilla VM, non-parametrized
469- kernel: 5.10
470- rootfs: Ubuntu 24.04
471- """
460+ """Create a vanilla VM, non-parametrized"""
472461 return microvm_factory .build (guest_kernel_linux_5_10 , rootfs_rw )
473462
474463
You can’t perform that action at this time.
0 commit comments