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
2421
2522import inspect
2623import os
27- import re
2824import shutil
2925import sys
3026import tempfile
3127from pathlib import Path
32- from typing import Dict
3328
3429import pytest
3530
5651
5752
5853METRICS = get_metrics_logger ()
59- PHASE_REPORT_KEY = pytest .StashKey [Dict [str , pytest .CollectReport ]]()
54+ PHASE_REPORT_KEY = pytest .StashKey [dict [str , pytest .CollectReport ]]()
6055
6156
6257def pytest_addoption (parser ):
@@ -428,19 +423,13 @@ def rootfs_rw():
428423
429424@pytest .fixture
430425def uvm_plain (microvm_factory , guest_kernel_linux_5_10 , rootfs ):
431- """Create a vanilla VM, non-parametrized
432- kernel: 5.10
433- rootfs: Ubuntu 24.04
434- """
426+ """Create a vanilla VM, non-parametrized"""
435427 return microvm_factory .build (guest_kernel_linux_5_10 , rootfs )
436428
437429
438430@pytest .fixture
439431def uvm_plain_rw (microvm_factory , guest_kernel_linux_5_10 , rootfs_rw ):
440- """Create a vanilla VM, non-parametrized
441- kernel: 5.10
442- rootfs: Ubuntu 24.04
443- """
432+ """Create a vanilla VM, non-parametrized"""
444433 return microvm_factory .build (guest_kernel_linux_5_10 , rootfs_rw )
445434
446435
You can’t perform that action at this time.
0 commit comments