Skip to content

Commit

Permalink
Renames pure/web_services to pure/ws
Browse files Browse the repository at this point in the history
  • Loading branch information
David Naughton authored and nihiliad committed Dec 5, 2023
1 parent fc9912a commit 6973fc9
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For example, to run only the Scopus API tests:

Similarly, to run only the Pure Web Services tests:

`pytest tests/api/pure/web_services/test_*.py`
`pytest tests/api/pure/ws/test_*.py`

Or to run all tests: `pytest`

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

import experts.api.client as client
import experts.api.pure.web_services.context as context
import experts.api.pure.ws.context as context

@pytest.fixture(scope="module")
def session():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from returns.pipeline import is_successful

from experts.api.client import get, post
import experts.api.pure.web_services.context as context
import experts.api.pure.ws.context as context

@pytest.mark.integration
def test_get_all_responses_by_token(session):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pyrsistent import m

#from pureapi import common
import experts.api.pure.web_services.context as context
import experts.api.pure.ws.context as context

def test_offset_request_params_parser():
params = m(size=1000, offset=0)
Expand Down
4 changes: 0 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
package_path = Path(__file__).parents[1]
sys.path.append(str(package_path))

#import experts.api.client as client
#import experts.api.pure.web_services.context as pure_ws_context
#import experts.api.scopus.context as scopus_context

def pytest_addoption(parser):
parser.addoption(
'--integration',
Expand Down

0 comments on commit 6973fc9

Please sign in to comment.