Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a56e42596 | |||
| 8609dc0385 | |||
|
21bc527adc
|
|||
|
8e3f4abe92
|
|||
| f53aba6b7b | |||
| e8111cf9e2 | |||
| 4680cb1d57 | |||
| c2cd1d2d92 | |||
| a7a5b39b83 | |||
|
b053a7d247
|
|||
| 99dd71a56f | |||
| 79db3015f3 | |||
| a2f88a4d5d | |||
| 2f7bc76a13 | |||
| 884ff1ca8f | |||
| d430157bf4 | |||
| f72e408920 | |||
| 4fb8bd8ca7 | |||
| e8c6bf3040 | |||
| 45afe14a7a | |||
| 3337bfe9dc | |||
| 0c8468d8c0 | |||
| 5b438d6cbb | |||
| 68b6de7da1 |
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(but status:*)"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
name: robotframework
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
|
||||
GITEA_REPOSITORY: ${{ gitea.repository }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: buildtool/setup-buildtools-action@v1
|
||||
- name: Build and push
|
||||
run: unset GITEA_TOKEN && build && push
|
||||
@@ -0,0 +1,9 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
uses: unboundsoftware/shared-workflows/.gitea/workflows/Release.yml@main
|
||||
@@ -2,6 +2,18 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [7.3.17] - 2025-12-29
|
||||
|
||||
### Chore
|
||||
|
||||
- *(deps)* Update dependency faker to v40
|
||||
|
||||
## [7.3.16] - 2025-12-29
|
||||
|
||||
### Chore
|
||||
|
||||
- *(deps)* Update dependency faker to v39.1.0
|
||||
|
||||
## [7.3.15] - 2025-12-25
|
||||
|
||||
### Chore
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
# CLAUDE.md
|
||||
|
||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||
|
||||
## Project Overview
|
||||
|
||||
This is a Docker image project for Robot Framework test automation. It packages Robot Framework with commonly used testing libraries and browser drivers (Firefox, Chrome) into a containerized environment for running automated tests.
|
||||
|
||||
## Build Commands
|
||||
|
||||
The project uses `build-tools` (not Docker buildx) for building:
|
||||
```bash
|
||||
build # Build the Docker image
|
||||
push # Push the image to registry
|
||||
```
|
||||
|
||||
## Project Structure
|
||||
|
||||
- `Dockerfile` - Main container definition based on Python slim, installs browsers and RF libraries
|
||||
- `requirements.txt` - Python dependencies (Robot Framework + libraries)
|
||||
- `.version` - JSON file containing the current version
|
||||
- `cliff.toml` - git-cliff configuration for changelog generation
|
||||
- `.gitea/workflows/ci.yaml` - CI pipeline (builds on push/PR to main)
|
||||
|
||||
## Key Libraries Included
|
||||
|
||||
- robotframework-browser (Playwright-based)
|
||||
- robotframework-seleniumlibrary
|
||||
- robotframework-appiumlibrary
|
||||
- robotframework-databaselibrary (with PostgreSQL/MySQL drivers)
|
||||
- robotframework-requests
|
||||
- robotframework-httplibrary
|
||||
|
||||
## Versioning
|
||||
|
||||
The project uses semantic versioning. Version is stored in `.version` as JSON. Changelog is auto-generated using git-cliff with conventional commits.
|
||||
|
||||
## CI/CD
|
||||
|
||||
Uses Gitea Actions. The pipeline runs `build` and `push` on main branch and pull requests.
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM python:3.14.2-slim@sha256:2751cbe93751f0147bc1584be957c6dd4c5f977c3d4e0396b56456a9fd4ed137
|
||||
FROM python:3.14.2-slim@sha256:3955a7dd66ccf92b68d0232f7f86d892eaf75255511dc7e98961bdc990dc6c9b
|
||||
|
||||
ARG TARGETOS
|
||||
ARG TARGETARCH
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
robotframework==7.4.1
|
||||
robotframework-browser==19.12.3
|
||||
robotframework-seleniumlibrary==6.8.0
|
||||
urllib3==2.6.2
|
||||
urllib3==2.6.3
|
||||
psycopg[binary]==3.3.2
|
||||
PyMySQL==1.1.2
|
||||
robotframework-appiumlibrary==3.2.1
|
||||
@@ -10,5 +10,5 @@ robotframework-httplibrary==0.4.2
|
||||
robotframework-http-rabbitmq==1.0.3
|
||||
robotframework-requests==0.9.7
|
||||
requests==2.32.5
|
||||
faker==39.0.0
|
||||
faker==40.1.0
|
||||
python-dotenv==1.2.1
|
||||
|
||||
Reference in New Issue
Block a user