Skip to content

Commit 9849982

Browse files
committed
Remove stuff for release.
1 parent a1ec4ad commit 9849982

File tree

7 files changed

+13
-31
lines changed

7 files changed

+13
-31
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PLANKQ_API_KEY="plqk_4Rk6rDnjDp6D38cRQXgGigFymWpCt3R7jw27kUZAcP"
1+
PLANKQ_API_KEY=
22
PLANKQ_TOKEN_URL="https://gateway.platform.planqk.de/token"
33
PLANQK_DATA_POOL_URL="https://platform.planqk.de/qc-catalog/data-pools"
44
PLANQK_OPEN_API_SPEC_URL="https://platform.planqk.de/qc-catalog/docs"

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Install
2+
Generate openapi client and install dependencies.
23
````shell
34
.\install.sh
45
pip install .
@@ -7,6 +8,12 @@ In *install.sh* the python client library is generated from the openapi-spec at
78
Addintionally there are some problems with generating the correct types which are also handled by replacing the lines with the script.
89

910
# Test
11+
Install dev dependencies.
12+
````shell
13+
pip install .[dev]
14+
````
15+
16+
Execute tests.
1017
````shell
1118
pytest -s -m MARK --log-cli-level=LOG_LEVEL .
1219
````

azure-pipelines.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/pyplanqk/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
__version_tuple__: VERSION_TUPLE
1313
version_tuple: VERSION_TUPLE
1414

15-
__version__ = version = '0.0.post63+g60bfba0.d20240222'
16-
__version_tuple__ = version_tuple = (0, 0, 'g60bfba0.d20240222')
15+
__version__ = version = '0.0.post64+ga1ec4ad.d20240222'
16+
__version_tuple__ = version_tuple = (0, 0, 'ga1ec4ad.d20240222')

tests/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/test_high_level_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Tuple
22

33
import pytest
4-
from conftest import cleanup_services_and_applications
4+
from util import cleanup_services_and_applications
55
from names_generator import generate_name
66
from util import get_test_data_path
77

tests/test_low_level_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
trigger_service_job,
3333
unpublish_service,
3434
)
35-
from tests.util import cleanup_services_and_applications, get_test_data_path
35+
from util import cleanup_services_and_applications, get_test_data_path
3636

3737
logger = logging.getLogger(__name__)
3838

0 commit comments

Comments
 (0)