mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 03:43:02 +00:00
Relocate unit tests
This commit is contained in:
parent
fba6432f40
commit
de8ebb1577
5 changed files with 4 additions and 4 deletions
|
@ -68,7 +68,7 @@ Sherlock. This invocation hides the progress text that Sherlock normally
|
||||||
outputs, and instead shows the verbose output of the tests.
|
outputs, and instead shows the verbose output of the tests.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ cd sherlock/sherlock
|
# Assumes pwd is respository root
|
||||||
$ python3 -m unittest tests.all --verbose
|
$ python3 -m unittest tests.all --verbose
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ This module contains various utilities for running tests.
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
import unittest
|
import unittest
|
||||||
import sherlock
|
from sherlock import sherlock
|
||||||
from sherlock.result import QueryStatus
|
from sherlock.result import QueryStatus
|
||||||
from sherlock.notify import QueryNotify
|
from sherlock.notify import QueryNotify
|
||||||
from sherlock.sites import SitesInformation
|
from sherlock.sites import SitesInformation
|
||||||
|
@ -30,7 +30,7 @@ class SherlockBaseTest(unittest.TestCase):
|
||||||
warnings.simplefilter("ignore", ResourceWarning)
|
warnings.simplefilter("ignore", ResourceWarning)
|
||||||
|
|
||||||
# Create object with all information about sites we are aware of.
|
# Create object with all information about sites we are aware of.
|
||||||
sites = SitesInformation(data_file_path=os.path.join(os.path.dirname(__file__), "../resources/data.json"))
|
sites = SitesInformation(data_file_path=os.path.join(os.path.dirname(__file__), "../sherlock/resources/data.json"))
|
||||||
|
|
||||||
# Create original dictionary from SitesInformation() object.
|
# Create original dictionary from SitesInformation() object.
|
||||||
# Eventually, the rest of the code will be updated to use the new object
|
# Eventually, the rest of the code will be updated to use the new object
|
|
@ -1,7 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
import sys
|
||||||
sys.path.append('../')
|
sys.path.append('../')
|
||||||
import sherlock as sh
|
from sherlock import sherlock as sh
|
||||||
|
|
||||||
checksymbols = []
|
checksymbols = []
|
||||||
checksymbols = ["_", "-", "."]
|
checksymbols = ["_", "-", "."]
|
Loading…
Reference in a new issue