Skip to content

Commit dec8065

Browse files
committed
Release 20.5.0
1 parent 47813ca commit dec8065

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ test:
1515

1616
.PHONY: clean
1717
clean:
18-
cd $(ROOT) && git clean -dfx --exclude tests/configuration*.json
18+
cd $(ROOT) && git clean -dfx --exclude='tests/configuration*.json'
1919

2020
.PHONY: dist
2121
dist: clean
2222
cd $(ROOT) && python3 setup.py sdist bdist_wheel
2323

24-
.PHONY: upload
25-
upload: format test dist
24+
.PHONY: publish
25+
publish: format test dist
2626
cd $(ROOT) && python3 -m twine upload dist/*

tests/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from aspose_barcode_cloud import Configuration, ApiClient, BarcodeApi, EncodeBarcodeType
55

6-
CONFIG_FILENAME = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'configuration.qa.json')
6+
CONFIG_FILENAME = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'configuration.wo-token.json')
77

88

99
@unittest.skipUnless(os.path.exists(CONFIG_FILENAME), "Requested file '%s' does not exist" % CONFIG_FILENAME)

0 commit comments

Comments
 (0)