forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1399800 - integrate pytest and add initial tests r=jmaher
MozReview-Commit-ID: FNQwCEtM1MB --HG-- rename : testing/talos/tests/__init__.py => testing/talos/talos/unittests/__init__.py rename : testing/talos/tests/browser_output.ts.txt => testing/talos/talos/unittests/browser_output.ts.txt rename : testing/talos/tests/browser_output.tsvg.txt => testing/talos/talos/unittests/browser_output.tsvg.txt rename : testing/talos/tests/profile.tgz => testing/talos/talos/unittests/profile.tgz rename : testing/talos/tests/ps-Acj.out => testing/talos/talos/unittests/ps-Acj.out rename : testing/talos/tests/test_talosconfig_browser_config.json => testing/talos/talos/unittests/test_talosconfig_browser_config.json rename : testing/talos/tests/test_talosconfig_test_config.json => testing/talos/talos/unittests/test_talosconfig_test_config.json rename : testing/talos/tests/xrestop_output.txt => testing/talos/talos/unittests/xrestop_output.txt extra : rebase_source : 0e4652fcf1950926d87089e9b64b1da031920b21
- Loading branch information
Ionut Goldan
committed
Oct 24, 2017
1 parent
14392e7
commit 9c2b03d
Showing
46 changed files
with
1,570 additions
and
842 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from __future__ import absolute_import | ||
|
||
import os | ||
|
||
here = os.path.realpath(__file__) | ||
__TESTS_DIR = os.path.join(os.path.dirname(os.path.dirname(here)), 'tests') | ||
|
||
|
||
def remove_develop_files(starting_dir=__TESTS_DIR): | ||
for file_name in os.listdir(starting_dir): | ||
|
||
file_path = os.path.join(starting_dir, file_name) | ||
|
||
if file_name.endswith('.develop') and os.path.isfile(file_path): | ||
os.remove(file_path) | ||
elif os.path.isdir(file_path): | ||
remove_develop_files(file_path) |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[DEFAULT] | ||
subsuite = talos | ||
|
||
[test_config.py] | ||
[test_ffsetup.py] | ||
[test_test.py] |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Oops, something went wrong.