-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- ci for #552
- Loading branch information
Showing
14 changed files
with
96 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## Update requirements.txt | ||
|
||
``` | ||
pip freeze requirements.txt | ||
pip freeze >requirements.txt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,12 @@ | ||
annotated-types==0.6.0 | ||
anyio==3.7.1 | ||
asgiref==3.7.2 | ||
astor==0.8.1 | ||
async-timeout==4.0.3 | ||
backports.zoneinfo==0.2.1 | ||
blinker==1.6.3 | ||
bottle==0.12.25 | ||
build==1.0.3 | ||
certifi==2023.7.22 | ||
charset-normalizer==3.3.0 | ||
click==8.1.7 | ||
coverage==7.3.2 | ||
Django==4.2.7 | ||
djangorestframework==3.14.0 | ||
docopt==0.6.2 | ||
exceptiongroup==1.1.3 | ||
fastapi==0.104.0 | ||
fastapi==0.104.1 | ||
flask==3.0.0 | ||
h11==0.14.0 | ||
httpcore==0.18.0 | ||
httpx==0.25.0 | ||
idna==3.4 | ||
importlib-metadata==6.8.0 | ||
iniconfig==2.0.0 | ||
itsdangerous==2.1.2 | ||
Jinja2==3.1.2 | ||
MarkupSafe==2.1.3 | ||
mysql-connector-repackaged==0.3.1 | ||
packaging==23.2 | ||
# -e git+https://github.com/eeliu/pinpoint-c-agent.git@0ae7a82e2d394938942073b226f4febd4c5f92da#egg=pinpointPy | ||
pluggy==1.3.0 | ||
pydantic==2.4.2 | ||
pydantic-core==2.10.1 | ||
httpx==0.25.1 | ||
mysql-connector-python==8.2.0 | ||
pymongo==4.6.0 | ||
PyMySQL==1.1.0 | ||
pyproject-hooks==1.0.0 | ||
pytest==7.4.2 | ||
pytz==2023.3.post1 | ||
redis==5.0.1 | ||
requests==2.31.0 | ||
rfc3986==1.5.0 | ||
sniffio==1.3.0 | ||
sqlparse==0.4.4 | ||
starlette==0.27.0 | ||
SQLAlchemy==2.0.23 | ||
starlette-context==0.3.6 | ||
tomli==2.0.1 | ||
typing-extensions==4.8.0 | ||
urllib3==2.0.7 | ||
werkzeug==3.0.1 | ||
yarg==0.1.9 | ||
zipp==3.17.0 | ||
mysqlclient==2.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM kennethreitz/httpbin:latest | ||
USER root | ||
RUN apt update && apt install -y curl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM python:3.8 | ||
|
||
COPY setup.py /pinpoint-c-agent/setup.py | ||
COPY common/ /pinpoint-c-agent/common | ||
COPY README /pinpoint-c-agent/README | ||
COPY plugins/PY /pinpoint-c-agent/plugins/PY | ||
COPY src/PY /pinpoint-c-agent/src/PY | ||
|
||
|
||
RUN pip install -r /pinpoint-c-agent/plugins/PY/requirements.txt | ||
RUN cd /pinpoint-c-agent && pip install -e . | ||
CMD ["python","-m","unittest","discover","-s","/pinpoint-c-agent/plugins/PY/pinpointPy/"] | ||
# CMD [ "python","-m","unittest","pinpointPy.libs._MysqlConnector.test_case.Test_Case" ] | ||
# CMD [ "bash" ] |