Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AKPlanning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
KIF
AKPlanning
Merge requests
!260
[WIP] import/export merge
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
[WIP] import/export merge
solver-import-export
into
main
Overview
0
Commits
102
Pipelines
3
Changes
1
Closed
Nadja Geisler
requested to merge
solver-import-export
into
main
2 months ago
Overview
0
Commits
102
Pipelines
3
Changes
1
Expand
0
0
Merge request reports
Viewing commit
fa80d349
Prev
Next
Show latest version
1 file
+
0
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
fa80d349
remove duplicate commands
· fa80d349
Nadja Geisler
authored
2 months ago
.gitlab-ci.yml
+
0
−
4
Options
@@ -29,18 +29,15 @@ cache:
migrations
:
extends
:
.before_script_template
script
:
-
source venv/bin/activate
-
./manage.py makemigrations --dry-run --check
test
:
extends
:
.before_script_template
script
:
-
source venv/bin/activate
-
echo "GRANT ALL on *.* to '${MYSQL_USER}';"| mysql -u root --password="${MYSQL_ROOT_PASSWORD}" -h mysql
-
pip install pytest-cov unittest-xml-reporting
-
coverage run --source='.' manage.py test --settings AKPlanning.settings_ci
after_script
:
-
source venv/bin/activate
-
coverage report
-
coverage xml
coverage
:
'
/(?i)total.*?
(100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
@@ -55,7 +52,6 @@ lint:
extends
:
.before_script_template
stage
:
test
script
:
-
source venv/bin/activate
-
pylint --load-plugins pylint_django --django-settings-module=AKPlanning.settings_ci --rcfile pylintrc --exit-zero --output-format=text AK* | tee /tmp/pylint.txt
-
sed -n 's/^Your code has been rated at \([-0-9.]*\)\/.*/\1/p' /tmp/pylint.txt > public/badges/$CI_JOB_NAME.score
-
pylint --load-plugins pylint_django --django-settings-module=AKPlanning.settings_ci --rcfile pylintrc --exit-zero --output-format=pylint_gitlab.GitlabCodeClimateReporter AK* > codeclimate.json
Loading