Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,4 @@ __marimo__/

# Test results directory
.test-results/
.idea/
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ WORKDIR /app
COPY --from=builder /root/.local /home/testrunner/.local

# Copy application code
COPY tests/ tests/
COPY result_analyzer/ result_analyzer/
COPY conftest.py .
COPY pytest.ini .
COPY documentdb_tests/ documentdb_tests/
COPY setup.py .

# Create directory for test results and set ownership
Expand All @@ -45,5 +42,5 @@ ENV PYTHONUNBUFFERED=1

# Default command: run all tests
# Users can override with command line arguments
ENTRYPOINT ["pytest"]
ENTRYPOINT ["pytest", "--rootdir", "documentdb_tests"]
CMD ["--help"]
Loading
Loading