Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
kwarray
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
computer-vision
kwarray
Merge requests
!54
Start branch for dev/0.7.1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Start branch for dev/0.7.1
dev/0.7.1
into
main
Overview
0
Commits
11
Pipelines
7
Changes
5
Merged
Jon Crall
requested to merge
dev/0.7.1
into
main
6 months ago
Overview
0
Commits
11
Pipelines
7
Changes
3
Expand
auto created MR
0
0
Merge request reports
Compare
version 1
version 6
d8bf764e
4 months ago
version 5
5b1f488e
4 months ago
version 4
c42df10a
4 months ago
version 3
9b24ccc0
5 months ago
version 2
0f4b98f0
6 months ago
version 1
0f342f79
6 months ago
main (base)
and
version 2
latest version
8d2e4ccb
11 commits,
4 months ago
version 6
d8bf764e
10 commits,
4 months ago
version 5
5b1f488e
9 commits,
4 months ago
version 4
c42df10a
8 commits,
4 months ago
version 3
9b24ccc0
3 commits,
5 months ago
version 2
0f4b98f0
2 commits,
6 months ago
version 1
0f342f79
1 commit,
6 months ago
Show latest version
3 files
+
0
−
143
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.circleci/config.yml deleted
100644 → 0
+
0
−
57
Options
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version
:
2
jobs
:
build
:
docker
:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
-
image
:
circleci/python:3.6.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory
:
~/repo
steps
:
-
checkout
# Download and cache dependencies
-
restore_cache
:
keys
:
-
v1-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
-
v1-dependencies-
-
run
:
name
:
install dependencies
command
:
|
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
pip install -r optional-requirements.txt
-
save_cache
:
paths
:
-
./venv
key
:
v1-dependencies-{{ checksum "requirements.txt" }}
# run tests!
# this example uses Django's built-in test-runner
# other common Python testing frameworks include pytest and nose
# https://pytest.org
# https://nose.readthedocs.io
-
run
:
name
:
run tests
command
:
|
. venv/bin/activate
python run_tests.py
-
store_artifacts
:
path
:
test-reports
destination
:
test-reports
Loading