Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gitlabtestv2 #1039

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@
},
{
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/integrations/test-integration",
"envFile": "${workspaceFolder}/integrations/test-integration/.env",
"cwd": "${workspaceFolder}/integrations/test-gitlab-v2",
"envFile": "${workspaceFolder}/integrations/test-gitlab-v2/.env",
"justMyCode": true,
"name": "Run test-integration integration",
"program": "${workspaceFolder}/integrations/test-integration/debug.py",
"python": "${workspaceFolder}/integrations/test-integration/.venv/bin/python",
"name": "Run test-gitlab-v2 integration",
"program": "${workspaceFolder}/integrations/test-gitlab-v2/debug.py",
"python": "${workspaceFolder}/integrations/test-gitlab-v2/.venv/bin/python",
"request": "launch",
"type": "debugpy"
}
Expand Down
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ACTIVATE := . .venv/bin/activate
define run_checks
exit_code=0; \
cd $1; \
poetry check || exit_code=$$?;\
poetry check || exit_code=$$?;\
mypy . --exclude '/\.venv/' || exit_code=$$?; \
ruff check . || exit_code=$$?; \
black --check . || exit_code=$$?; \
Expand All @@ -16,7 +16,6 @@ define run_checks
exit $$exit_code
endef


define install_poetry
if ! command -v poetry &> /dev/null; then \
pip install --upgrade pip; \
Expand Down Expand Up @@ -45,7 +44,6 @@ endef

.SILENT: install install/all test/all lint lint/fix build run new test test/watch clean bump/integrations bump/single-integration execute/all


# Install dependencies
install:
$(call deactivate_virtualenv) && \
Expand All @@ -66,7 +64,6 @@ test/all: test
fi; \
done;


execute/all:
# run script for all integrations (${SCRIPT_TO_RUN})
for dir in $(wildcard $(CURDIR)/integrations/*); do \
Expand Down Expand Up @@ -112,6 +109,11 @@ run: lint
$(ACTIVATE) && poetry run ocean sail ./integrations/example

new:
@if [ ! -d .venv ]; then \
echo "Creating virtual environment..."; \
poetry env use python3.11; \
poetry install; \
fi; \
$(ACTIVATE) && poetry run ocean new ./integrations --public

test:
Expand Down
11 changes: 11 additions & 0 deletions integrations/test-gitlab-v2/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
OCEAN__PORT__CLIENT_ID=
OCEAN__PORT__CLIENT_SECRET=
OCEAN__PORT__BASE__URL=https://api.getport.io
OCEAN__EVENT__LISTENER='{"TYPE":"POLLING"}'
OCEAN__INTEGRATION__IDENTIFIER=
OCEAN__INTEGRATION__CONFIG__GITLAB_TOKEN=
OCEAN__INTEGRATION__CONFIG__GITLAB_API_URL=
OCEAN__INTEGRATION__CONFIG__RATE_LIMIT_MAX_RETRIES=
OCEAN__INTEGRATION__CONFIG__WEBHOOK_URL=
OCEAN__INTEGRATION__CONFIG__GITLAB_PROJECT_ID=
OCEAN__INTEGRATION__CONFIG__APP_HOST=
153 changes: 153 additions & 0 deletions integrations/test-gitlab-v2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/
1 change: 1 addition & 0 deletions integrations/test-gitlab-v2/.port/resources/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!.gitignore
Loading