Skip to content

Commit

Permalink
create release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EMEA-MEDIA\scabra02 committed Aug 23, 2024
1 parent a06dab6 commit 6944f7d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 80 deletions.
2 changes: 1 addition & 1 deletion docs/AWSLibrary.html

Large diffs are not rendered by default.

30 changes: 1 addition & 29 deletions docs/AWSLibrary.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<keywordspec name="AWSLibrary" type="LIBRARY" format="ROBOT" scope="GLOBAL" generated="2024-08-22T16:38:33+00:00" specversion="6" source="C:\Merkle\repositories\robotframework-aws\src\AWSLibrary\__init__.py" lineno="15">
<keywordspec name="AWSLibrary" type="LIBRARY" format="ROBOT" scope="GLOBAL" generated="2024-08-23T13:36:10+00:00" specversion="6" source="C:\Merkle\repositories\robotframework-aws\src\AWSLibrary\__init__.py" lineno="14">
<version>1.0.0</version>
<doc>AWSLibrary is a testing library for Robot Framework that gives you the ability to use some of the AWS
services in your tests. This robot library is made from Boto3 SDK
Expand Down Expand Up @@ -623,34 +623,6 @@ could be used to list only the files inside a folder for example.
| List Objects | bucket_name | folder_name/start_of_the_filename |</doc>
<shortdoc>*DEPRECATED - this keyword will be removed in version 2.0.0* use `S3 List Objects` instead</shortdoc>
</kw>
<kw name="Local File Should Exist" deprecated="true" source="C:\Merkle\repositories\robotframework-aws\src\AWSLibrary\keywords\resource.py" lineno="10">
<arguments repr="path">
<arg kind="POSITIONAL_OR_NAMED" required="true" repr="path">
<name>path</name>
</arg>
</arguments>
<doc>*DEPRECATED - this keyword will be removed in version 2.0.0*

Verifies Local File at the given path does exist
Requires: @param: ```path``` which is the bucket location/path name.
Example:
| Local File Should Exist | bucket | path |</doc>
<shortdoc>*DEPRECATED - this keyword will be removed in version 2.0.0*</shortdoc>
</kw>
<kw name="Local File Should Not Exist" deprecated="true" source="C:\Merkle\repositories\robotframework-aws\src\AWSLibrary\keywords\resource.py" lineno="28">
<arguments repr="path">
<arg kind="POSITIONAL_OR_NAMED" required="true" repr="path">
<name>path</name>
</arg>
</arguments>
<doc>*DEPRECATED - this keyword will be removed in version 2.0.0*

Verifies Local File at the given path does not exist
Requires: @param: ```path``` which is the bucket location/path name.
Example:
| Local File Should Not Exist | bucket | path |</doc>
<shortdoc>*DEPRECATED - this keyword will be removed in version 2.0.0*</shortdoc>
</kw>
<kw name="S3 Copy Between Buckets" source="C:\Merkle\repositories\robotframework-aws\src\AWSLibrary\keywords\s3.py" lineno="417">
<arguments repr="source_bucket, source_key, destination_bucket, destination_key">
<arg kind="POSITIONAL_OR_NAMED" required="true" repr="source_bucket">
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

def readme():
with open('README.md') as f:
README = f.read()
return README
read_me = f.read()
return read_me


setup(
name='robotframework-aws',
version='0.2.0',
version='1.0.0',
author="Dillan Teagle",
author_email="[email protected]",
description="A python package to test AWS services in Robot Framework",
Expand Down
2 changes: 0 additions & 2 deletions src/AWSLibrary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from AWSLibrary.keywords import (
SessionKeywords,
S3Keywords,
ResourceKeywords,
DynamoKeywords,
CloudWatchKeywords
)
Expand Down Expand Up @@ -45,7 +44,6 @@ def __init__(self):
libraries = [
SessionKeywords(self),
S3Keywords(self),
ResourceKeywords(self),
DynamoKeywords(self),
CloudWatchKeywords(self),
SQSKeywords(self)
Expand Down
2 changes: 0 additions & 2 deletions src/AWSLibrary/keywords/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from AWSLibrary.keywords.session import SessionKeywords
from AWSLibrary.keywords.s3 import S3Keywords
from AWSLibrary.keywords.resource import ResourceKeywords
from AWSLibrary.keywords.dynamo import DynamoKeywords
from AWSLibrary.keywords.cloudWatch import CloudWatchKeywords
from AWSLibrary.keywords.sqs import SQSKeywords
Expand All @@ -9,7 +8,6 @@
__all__ = [
SessionKeywords,
S3Keywords,
ResourceKeywords,
DynamoKeywords,
CloudWatchKeywords,
SQSKeywords
Expand Down
43 changes: 0 additions & 43 deletions src/AWSLibrary/keywords/resource.py

This file was deleted.

0 comments on commit 6944f7d

Please sign in to comment.