Skip to content

Commit

Permalink
update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pandomic committed Nov 28, 2024
1 parent ccbcf26 commit 564ce5d
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 125 deletions.
89 changes: 0 additions & 89 deletions .github/workflows/ephemeral.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Set up Dependencies
run: |
pip install localstack requests boto3 pytest localstack-sdk-python awscli-local
make install
pip install localstack-ci-extension-plugins/pytest_plugin
cd localstack-ci-extension && pip install -e . && cd -
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/preview.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ develop-eggs/
dist/
.env
.venv
*.egg-info/
env/
venv/
__pycache__
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
install:
pip install -e .;

usage: ## Show usage for this Makefile
@cat Makefile | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
Expand Down
24 changes: 24 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[metadata]
name = serverless-quiz-app
version = 0.0.1
url = localstack.cloud
author = LocalStack Team
author_email = [email protected]
description = LocalStack Quiz App
license = Proprietary
classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: Other/Proprietary License
Topic :: Software Development :: Testing

[options]
zip_safe = False
packages = find_namespace:
install_requires =
localstack
requests
boto3
pytest
localstack-sdk-python
awscli-local
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env python
from setuptools import setup

setup()

0 comments on commit 564ce5d

Please sign in to comment.