forked from ros-infrastructure/rosdep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mark linter tests and tests which require network (ros-infrastructure…
…#884) Marking tests appropriately will allow us to be more selective about what tests are run.
- Loading branch information
Showing
7 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
# Author Ken Conley/[email protected] | ||
|
||
import os | ||
import pytest | ||
import yaml | ||
|
||
rep122_install_command = """#!/bin/bash | ||
|
@@ -300,12 +301,14 @@ def test_download_rdmanifest(): | |
pass | ||
|
||
|
||
@pytest.mark.online | ||
def test_install_from_file(): | ||
from rosdep2.platforms.source import install_from_file | ||
f = os.path.join(get_test_dir(), 'noop-not-installed.rdmanifest') | ||
install_from_file(f) | ||
|
||
|
||
@pytest.mark.online | ||
def test_install_source(): | ||
from rosdep2.platforms.source import install_source, SourceInstall | ||
resolved = SourceInstall() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters