squad 1.93.5__py3-none-any.whl → 1.94__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- squad/api/rest.py +17 -4
 - squad/ci/tasks.py +10 -1
 - squad/frontend/locale/django.pot +3 -3
 - squad/frontend/locale/pl/LC_MESSAGES/django.po +6 -6
 - squad/frontend/locale/pt/LC_MESSAGES/django.po +6 -6
 - squad/frontend/locale/pt_BR/LC_MESSAGES/django.po +6 -6
 - squad/frontend/static/squad/controllers/fetch.js +1 -1
 - squad/frontend/templates/django/rest_framework/api.html +1 -1
 - squad/frontend/templates/squad/base.jinja2 +1 -1
 - squad/frontend/views.py +1 -0
 - squad/plugins/linux_log_parser_build.py +19 -13
 - squad/version.py +1 -1
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/METADATA +3 -2
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/RECORD +18 -18
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/COPYING +0 -0
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/WHEEL +0 -0
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/entry_points.txt +0 -0
 - {squad-1.93.5.dist-info → squad-1.94.dist-info}/top_level.txt +0 -0
 
    
        squad/api/rest.py
    CHANGED
    
    | 
         @@ -355,6 +355,9 @@ class DynamicFieldsModelSerializer(serializers.ModelSerializer): 
     | 
|
| 
       355 
355 
     | 
    
         
             
                    # Instantiate the superclass normally
         
     | 
| 
       356 
356 
     | 
    
         
             
                    super(DynamicFieldsModelSerializer, self).__init__(*args, **kwargs)
         
     | 
| 
       357 
357 
     | 
    
         | 
| 
      
 358 
     | 
    
         
            +
                    if 'request' not in self.context:
         
     | 
| 
      
 359 
     | 
    
         
            +
                        return
         
     | 
| 
      
 360 
     | 
    
         
            +
             
     | 
| 
       358 
361 
     | 
    
         
             
                    fields = self.context['request'].query_params.get('fields')
         
     | 
| 
       359 
362 
     | 
    
         
             
                    if fields:
         
     | 
| 
       360 
363 
     | 
    
         
             
                        fields = fields.split(',')
         
     | 
| 
         @@ -1015,7 +1018,7 @@ class BuildViewSet(NestedViewSetMixin, ModelViewSet): 
     | 
|
| 
       1015 
1018 
     | 
    
         
             
                def status(self, request, pk=None):
         
     | 
| 
       1016 
1019 
     | 
    
         
             
                    try:
         
     | 
| 
       1017 
1020 
     | 
    
         
             
                        build = self.get_object()
         
     | 
| 
       1018 
     | 
    
         
            -
                        qs = build.test_runs.prefetch_related('environment', Prefetch("status", queryset=Status.objects.filter(suite=None)))
         
     | 
| 
      
 1021 
     | 
    
         
            +
                        qs = build.test_runs.prefetch_related('environment', Prefetch("status", queryset=Status.objects.filter(suite=None))).defer('metadata_file')
         
     | 
| 
       1019 
1022 
     | 
    
         
             
                        enriched_details = self.__enrich_status_details__(request, qs)
         
     | 
| 
       1020 
1023 
     | 
    
         
             
                        serializer = ProjectStatusSerializer(build.status, many=False, context={'request': request, 'enriched_details': enriched_details})
         
     | 
| 
       1021 
1024 
     | 
    
         
             
                        return Response(serializer.data)
         
     | 
| 
         @@ -1539,8 +1542,9 @@ class TestRunViewSet(ModelViewSet): 
     | 
|
| 
       1539 
1542 
     | 
    
         
             
                    Presents summary view for each suite present in this test run
         
     | 
| 
       1540 
1543 
     | 
    
         
             
                """
         
     | 
| 
       1541 
1544 
     | 
    
         
             
                queryset = TestRun.objects.prefetch_related(
         
     | 
| 
      
 1545 
     | 
    
         
            +
                    "attachments",
         
     | 
| 
       1542 
1546 
     | 
    
         
             
                    Prefetch("status", queryset=Status.objects.filter(suite=None))
         
     | 
| 
       1543 
     | 
    
         
            -
                ).order_by("-id")
         
     | 
| 
      
 1547 
     | 
    
         
            +
                ).defer("metadata_file").order_by("-id")
         
     | 
| 
       1544 
1548 
     | 
    
         
             
                project_lookup_key = 'build__project__in'
         
     | 
| 
       1545 
1549 
     | 
    
         
             
                serializer_class = TestRunSerializer
         
     | 
| 
       1546 
1550 
     | 
    
         
             
                filterset_fields = (
         
     | 
| 
         @@ -1763,11 +1767,20 @@ class TestJobViewSet(ModelViewSet): 
     | 
|
| 
       1763 
1767 
     | 
    
         | 
| 
       1764 
1768 
     | 
    
         
             
                @action(detail=True, methods=['post'], suffix='fetch')
         
     | 
| 
       1765 
1769 
     | 
    
         
             
                def fetch(self, request, **kwargs):
         
     | 
| 
      
 1770 
     | 
    
         
            +
                    clean_testrun = request.data.get('clean_testrun') is not None
         
     | 
| 
      
 1771 
     | 
    
         
            +
             
     | 
| 
       1766 
1772 
     | 
    
         
             
                    testjob = self.get_object()
         
     | 
| 
       1767 
1773 
     | 
    
         
             
                    testjob.fetched = False
         
     | 
| 
       1768 
1774 
     | 
    
         
             
                    testjob.fetch_attempts = 0
         
     | 
| 
       1769 
     | 
    
         
            -
                    testjob. 
     | 
| 
       1770 
     | 
    
         
            -
                     
     | 
| 
      
 1775 
     | 
    
         
            +
                    testjob.subtasks_count = 0
         
     | 
| 
      
 1776 
     | 
    
         
            +
                    testjob.job_status = None
         
     | 
| 
      
 1777 
     | 
    
         
            +
                    testjob.save(update_fields=[
         
     | 
| 
      
 1778 
     | 
    
         
            +
                        'fetched',
         
     | 
| 
      
 1779 
     | 
    
         
            +
                        'fetch_attempts',
         
     | 
| 
      
 1780 
     | 
    
         
            +
                        'subtasks_count',
         
     | 
| 
      
 1781 
     | 
    
         
            +
                        'job_status',
         
     | 
| 
      
 1782 
     | 
    
         
            +
                    ])
         
     | 
| 
      
 1783 
     | 
    
         
            +
                    fetch.delay(testjob.id, clean_testrun=clean_testrun)
         
     | 
| 
       1771 
1784 
     | 
    
         
             
                    log_change(request, testjob, "Testjob queued for fetching")
         
     | 
| 
       1772 
1785 
     | 
    
         
             
                    return Response({'job_id': testjob.job_id, 'status': 'Queued for fetching'}, status=status.HTTP_200_OK)
         
     | 
| 
       1773 
1786 
     | 
    
         | 
    
        squad/ci/tasks.py
    CHANGED
    
    | 
         @@ -25,10 +25,19 @@ def poll(backend_id=None): 
     | 
|
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
            @celery.task
         
     | 
| 
       28 
     | 
    
         
            -
            def fetch(job_id):
         
     | 
| 
      
 28 
     | 
    
         
            +
            def fetch(job_id, clean_testrun=False):
         
     | 
| 
       29 
29 
     | 
    
         
             
                logger.info("fetching %s" % job_id)
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
       30 
31 
     | 
    
         
             
                try:
         
     | 
| 
       31 
32 
     | 
    
         
             
                    testjob = TestJob.objects.get(pk=job_id)
         
     | 
| 
      
 33 
     | 
    
         
            +
                    if clean_testrun and testjob.testrun:
         
     | 
| 
      
 34 
     | 
    
         
            +
                        logger.info("clean_testrun=True, cleaning job's testrun")
         
     | 
| 
      
 35 
     | 
    
         
            +
                        testrun = testjob.testrun
         
     | 
| 
      
 36 
     | 
    
         
            +
                        testjob.testrun = None
         
     | 
| 
      
 37 
     | 
    
         
            +
                        testjob.save()
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                        testrun.delete()
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
       32 
41 
     | 
    
         
             
                    if testjob.job_id:
         
     | 
| 
       33 
42 
     | 
    
         
             
                        testjob.backend.fetch(testjob.id)
         
     | 
| 
       34 
43 
     | 
    
         
             
                except TestJob.DoesNotExist:
         
     | 
    
        squad/frontend/locale/django.pot
    CHANGED
    
    | 
         @@ -523,9 +523,9 @@ msgstr "" 
     | 
|
| 
       523 
523 
     | 
    
         
             
            #: squad/frontend/templates/django/rest_framework/api.html:59
         
     | 
| 
       524 
524 
     | 
    
         
             
            #: squad/frontend/templates/squad/base.jinja2:82
         
     | 
| 
       525 
525 
     | 
    
         
             
            msgid ""
         
     | 
| 
       526 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       527 
     | 
    
         
            -
            "href=\"https:// 
     | 
| 
       528 
     | 
    
         
            -
            "available on  
     | 
| 
      
 526 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Source code</a> and <a "
         
     | 
| 
      
 527 
     | 
    
         
            +
            "href=\"https://gitlab.com/Linaro/squad/squad/-/issues\">Issue tracker</a> are "
         
     | 
| 
      
 528 
     | 
    
         
            +
            "available on GitLab."
         
     | 
| 
       529 
529 
     | 
    
         
             
            msgstr ""
         
     | 
| 
       530 
530 
     | 
    
         | 
| 
       531 
531 
     | 
    
         
             
            #: squad/frontend/templates/squad/build-nav.jinja2:13
         
     | 
| 
         @@ -535,13 +535,13 @@ msgstr "" 
     | 
|
| 
       535 
535 
     | 
    
         
             
            #: squad/frontend/templates/django/rest_framework/api.html:59
         
     | 
| 
       536 
536 
     | 
    
         
             
            #: squad/frontend/templates/squad/base.jinja2:82
         
     | 
| 
       537 
537 
     | 
    
         
             
            msgid ""
         
     | 
| 
       538 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       539 
     | 
    
         
            -
            "\"https:// 
     | 
| 
       540 
     | 
    
         
            -
            "on  
     | 
| 
      
 538 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Source code</a> and <a href="
         
     | 
| 
      
 539 
     | 
    
         
            +
            "\"https://gitlab.com/Linaro/squad/squad/-/issues\">Issue tracker</a> are available "
         
     | 
| 
      
 540 
     | 
    
         
            +
            "on GitLab."
         
     | 
| 
       541 
541 
     | 
    
         
             
            msgstr ""
         
     | 
| 
       542 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       543 
     | 
    
         
            -
            "\"https:// 
     | 
| 
       544 
     | 
    
         
            -
            "na  
     | 
| 
      
 542 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Kod źródłowy</a> i <a href="
         
     | 
| 
      
 543 
     | 
    
         
            +
            "\"https://gitlab.com/Linaro/squad/squad/-/issues\">zgłaszanie błędów</a> są dostępne "
         
     | 
| 
      
 544 
     | 
    
         
            +
            "na GitLab."
         
     | 
| 
       545 
545 
     | 
    
         | 
| 
       546 
546 
     | 
    
         
             
            #: squad/frontend/templates/squad/build-nav.jinja2:13
         
     | 
| 
       547 
547 
     | 
    
         
             
            msgid "Annotation:"
         
     | 
| 
         @@ -534,13 +534,13 @@ msgstr "" 
     | 
|
| 
       534 
534 
     | 
    
         
             
            #: squad/frontend/templates/django/rest_framework/api.html:59
         
     | 
| 
       535 
535 
     | 
    
         
             
            #: squad/frontend/templates/squad/base.jinja2:82
         
     | 
| 
       536 
536 
     | 
    
         
             
            msgid ""
         
     | 
| 
       537 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       538 
     | 
    
         
            -
            "href=\"https:// 
     | 
| 
       539 
     | 
    
         
            -
            "available on  
     | 
| 
      
 537 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Source code</a> and <a "
         
     | 
| 
      
 538 
     | 
    
         
            +
            "href=\"https://gitlab.com/Linaro/squad/squad/-/issues\">Issue tracker</a> are "
         
     | 
| 
      
 539 
     | 
    
         
            +
            "available on GitLab."
         
     | 
| 
       540 
540 
     | 
    
         
             
            msgstr ""
         
     | 
| 
       541 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       542 
     | 
    
         
            -
            "\"https:// 
     | 
| 
       543 
     | 
    
         
            -
            " 
     | 
| 
      
 541 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Código fonte</a> e <a href="
         
     | 
| 
      
 542 
     | 
    
         
            +
            "\"https://gitlab.com/Linaro/squad/squad/-/issues\">issues</a> estão disponívels no "
         
     | 
| 
      
 543 
     | 
    
         
            +
            "GitLab."
         
     | 
| 
       544 
544 
     | 
    
         | 
| 
       545 
545 
     | 
    
         
             
            #: squad/frontend/templates/squad/build-nav.jinja2:13
         
     | 
| 
       546 
546 
     | 
    
         
             
            msgid "Annotation:"
         
     | 
| 
         @@ -533,13 +533,13 @@ msgstr "" 
     | 
|
| 
       533 
533 
     | 
    
         
             
            #: squad/frontend/templates/django/rest_framework/api.html:59
         
     | 
| 
       534 
534 
     | 
    
         
             
            #: squad/frontend/templates/squad/base.jinja2:82
         
     | 
| 
       535 
535 
     | 
    
         
             
            msgid ""
         
     | 
| 
       536 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       537 
     | 
    
         
            -
            "\"https:// 
     | 
| 
       538 
     | 
    
         
            -
            "on  
     | 
| 
      
 536 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Source code</a> and <a href="
         
     | 
| 
      
 537 
     | 
    
         
            +
            "\"https://gitlab.com/Linaro/squad/squad/-/issues\">Issue tracker</a> are available "
         
     | 
| 
      
 538 
     | 
    
         
            +
            "on GitLab."
         
     | 
| 
       539 
539 
     | 
    
         
             
            msgstr ""
         
     | 
| 
       540 
     | 
    
         
            -
            "<a href=\"https:// 
     | 
| 
       541 
     | 
    
         
            -
            "\"https:// 
     | 
| 
       542 
     | 
    
         
            -
            " 
     | 
| 
      
 540 
     | 
    
         
            +
            "<a href=\"https://gitlab.com/Linaro/squad/squad\">Código fonte</a> e <a href="
         
     | 
| 
      
 541 
     | 
    
         
            +
            "\"https://gitlab.com/Linaro/squad/squad/-/issues\">issues</a> estão disponívels no "
         
     | 
| 
      
 542 
     | 
    
         
            +
            "GitLab."
         
     | 
| 
       543 
543 
     | 
    
         | 
| 
       544 
544 
     | 
    
         
             
            #: squad/frontend/templates/squad/build-nav.jinja2:13
         
     | 
| 
       545 
545 
     | 
    
         
             
            msgid "Annotation:"
         
     | 
| 
         @@ -7,7 +7,7 @@ export function FetchController($scope, $http, $timeout) { 
     | 
|
| 
       7 
7 
     | 
    
         
             
                    if ($scope.done) return
         
     | 
| 
       8 
8 
     | 
    
         
             
                    $scope.loading = true
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                    $http.post("/api/testjobs/" + test_job_id + "/fetch/").then(
         
     | 
| 
      
 10 
     | 
    
         
            +
                    $http.post("/api/testjobs/" + test_job_id + "/fetch/", {"clean_testrun": true}).then(
         
     | 
| 
       11 
11 
     | 
    
         
             
                        function(response) {
         
     | 
| 
       12 
12 
     | 
    
         
             
                            $timeout(function() {
         
     | 
| 
       13 
13 
     | 
    
         
             
                                $scope.loading = false
         
     | 
| 
         @@ -55,7 +55,7 @@ 
     | 
|
| 
       55 
55 
     | 
    
         
             
                    {% squad_version as squadversion %}
         
     | 
| 
       56 
56 
     | 
    
         
             
                    {% blocktrans %}<a href="http://squad.readthedocs.io/">SQUAD</a> version {{ squadversion }}.{% endblocktrans %}
         
     | 
| 
       57 
57 
     | 
    
         
             
                    {% blocktrans %}SQUAD is free software, distributed under the terms of <a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License, version 3</a> or (at your option) any later version.{% endblocktrans %}
         
     | 
| 
       58 
     | 
    
         
            -
                    {% blocktrans %}<a href="https:// 
     | 
| 
      
 58 
     | 
    
         
            +
                    {% blocktrans %}<a href="https://gitlab.com/Linaro/squad/squad">Source code</a> and <a href="https://gitlab.com/Linaro/squad/squad/-/issues">Issue tracker</a> are available on GitLab.{% endblocktrans %}
         
     | 
| 
       59 
59 
     | 
    
         
             
                  </div>
         
     | 
| 
       60 
60 
     | 
    
         
             
                </footer>
         
     | 
| 
       61 
61 
     | 
    
         
             
                </div><!-- id="wrapper" -->
         
     | 
| 
         @@ -78,7 +78,7 @@ 
     | 
|
| 
       78 
78 
     | 
    
         
             
                  <div class="container">
         
     | 
| 
       79 
79 
     | 
    
         
             
                    {{ (_('<a href="http://squad.readthedocs.io/">SQUAD</a> version %(squadversion)s.') % {'squadversion': squad_version()}) | safe }}
         
     | 
| 
       80 
80 
     | 
    
         
             
                    {{ _('SQUAD is free software, distributed under the terms of <a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License, version 3</a> or (at your option) any later version.') | safe }}
         
     | 
| 
       81 
     | 
    
         
            -
                    {{ _('<a href="https:// 
     | 
| 
      
 81 
     | 
    
         
            +
                    {{ _('<a href="https://gitlab.com/Linaro/squad/squad">Source code</a> and <a href="https://gitlab.com/Linaro/squad/squad/-/issues">Issue tracker</a> are available on GitLab.') | safe }}
         
     | 
| 
       82 
82 
     | 
    
         
             
                  </div>
         
     | 
| 
       83 
83 
     | 
    
         
             
                </footer>
         
     | 
| 
       84 
84 
     | 
    
         
             
                </div><!-- id="wrapper" -->
         
     | 
    
        squad/frontend/views.py
    CHANGED
    
    | 
         @@ -507,6 +507,7 @@ def test_run_suite_tests(request, group_slug, project_slug, build_version, testr 
     | 
|
| 
       507 
507 
     | 
    
         
             
                ).order_by(Case(When(result=False, then=0), When(result=True, then=2), default=1), 'metadata__name')
         
     | 
| 
       508 
508 
     | 
    
         | 
| 
       509 
509 
     | 
    
         
             
                paginator = Paginator(all_tests, 100)
         
     | 
| 
      
 510 
     | 
    
         
            +
                paginator.count = context['status'].tests_total
         
     | 
| 
       510 
511 
     | 
    
         
             
                page = request.GET.get('page', '1')
         
     | 
| 
       511 
512 
     | 
    
         
             
                context['tests'] = paginator.page(page)
         
     | 
| 
       512 
513 
     | 
    
         | 
| 
         @@ -51,17 +51,17 @@ MULTILINERS_GENERAL = [ 
     | 
|
| 
       51 
51 
     | 
    
         
             
                (
         
     | 
| 
       52 
52 
     | 
    
         
             
                    "general-not-a-git-repo",
         
     | 
| 
       53 
53 
     | 
    
         
             
                    r"^[^\n]*fatal: not a git repository.*?not set\)\.$",
         
     | 
| 
       54 
     | 
    
         
            -
                    r" 
     | 
| 
      
 54 
     | 
    
         
            +
                    r"fatal: not a git repository.*?$",
         
     | 
| 
       55 
55 
     | 
    
         
             
                ),
         
     | 
| 
       56 
56 
     | 
    
         
             
                (
         
     | 
| 
       57 
57 
     | 
    
         
             
                    "general-unexpected-argument",
         
     | 
| 
       58 
58 
     | 
    
         
             
                    r"^[^\n]*error: Found argument.*?--help$",
         
     | 
| 
       59 
     | 
    
         
            -
                    r" 
     | 
| 
      
 59 
     | 
    
         
            +
                    r"error: Found argument.*?$",
         
     | 
| 
       60 
60 
     | 
    
         
             
                ),
         
     | 
| 
       61 
61 
     | 
    
         
             
                (
         
     | 
| 
       62 
62 
     | 
    
         
             
                    "general-broken-32-bit",
         
     | 
| 
       63 
63 
     | 
    
         
             
                    r"^[^\n]*Warning: you seem to have a broken 32-bit build.*?(?:If[^\n]*?try:(?:\n|\s+.+?$)+)+",
         
     | 
| 
       64 
     | 
    
         
            -
                    r" 
     | 
| 
      
 64 
     | 
    
         
            +
                    r"Warning:.*?$",
         
     | 
| 
       65 
65 
     | 
    
         
             
                ),
         
     | 
| 
       66 
66 
     | 
    
         
             
                (
         
     | 
| 
       67 
67 
     | 
    
         
             
                    "general-makefile-overriding",
         
     | 
| 
         @@ -76,27 +76,27 @@ MULTILINERS_GENERAL = [ 
     | 
|
| 
       76 
76 
     | 
    
         
             
                (
         
     | 
| 
       77 
77 
     | 
    
         
             
                    "general-ldd",
         
     | 
| 
       78 
78 
     | 
    
         
             
                    r"^[^\n]*?lld:[^\n]+?(?:warning|error):.*?$(?:\n^>>>[^\n]+)*",
         
     | 
| 
       79 
     | 
    
         
            -
                    r" 
     | 
| 
      
 79 
     | 
    
         
            +
                    r"lld:.*?$",
         
     | 
| 
       80 
80 
     | 
    
         
             
                ),
         
     | 
| 
       81 
81 
     | 
    
         
             
                (
         
     | 
| 
       82 
82 
     | 
    
         
             
                    "general-ld",
         
     | 
| 
       83 
83 
     | 
    
         
             
                    r"^[^\n]*?ld:[^\n]+?(?:warning|error):[^\n]*?$(?:\n^[^\n]*?NOTE:[^\n]+)*",
         
     | 
| 
       84 
     | 
    
         
            -
                    r" 
     | 
| 
      
 84 
     | 
    
         
            +
                    r"(?:warning|error):.*?$",
         
     | 
| 
       85 
85 
     | 
    
         
             
                ),
         
     | 
| 
       86 
86 
     | 
    
         
             
                (
         
     | 
| 
       87 
87 
     | 
    
         
             
                    "general-objcopy",
         
     | 
| 
       88 
88 
     | 
    
         
             
                    r"^[^\n]*?objcopy:[^\n]+?(?:warning|error):[^\n]*?$(?:\n^[^\n]*?NOTE:[^\n]+)*",
         
     | 
| 
       89 
     | 
    
         
            -
                    r" 
     | 
| 
      
 89 
     | 
    
         
            +
                    r"(?:warning|error):.*?$",
         
     | 
| 
       90 
90 
     | 
    
         
             
                ),
         
     | 
| 
       91 
91 
     | 
    
         
             
                (
         
     | 
| 
       92 
92 
     | 
    
         
             
                    "general-ld-undefined-reference",
         
     | 
| 
       93 
93 
     | 
    
         
             
                    r"^[^\n]*?ld[^\n]*?$\n^[^\n]+undefined reference.*?$",
         
     | 
| 
       94 
     | 
    
         
            -
                    r" 
     | 
| 
      
 94 
     | 
    
         
            +
                    r"undefined reference.*?$",
         
     | 
| 
       95 
95 
     | 
    
         
             
                ),
         
     | 
| 
       96 
96 
     | 
    
         
             
                (
         
     | 
| 
       97 
97 
     | 
    
         
             
                    "general-modpost",
         
     | 
| 
       98 
98 
     | 
    
         
             
                    r"^[^\n]*?WARNING: modpost:[^\n]*?$(?:\n^To see.*?:$\n^.*?$)?",
         
     | 
| 
       99 
     | 
    
         
            -
                    r" 
     | 
| 
      
 99 
     | 
    
         
            +
                    r"WARNING.*?$",
         
     | 
| 
       100 
100 
     | 
    
         
             
                ),
         
     | 
| 
       101 
101 
     | 
    
         
             
                (
         
     | 
| 
       102 
102 
     | 
    
         
             
                    "general-python-traceback",
         
     | 
| 
         @@ -134,22 +134,22 @@ ONELINERS_GENERAL = [ 
     | 
|
| 
       134 
134 
     | 
    
         
             
                (
         
     | 
| 
       135 
135 
     | 
    
         
             
                    "general-kernel-abi",
         
     | 
| 
       136 
136 
     | 
    
         
             
                    r"^Warning: Kernel ABI header at.*?$",
         
     | 
| 
       137 
     | 
    
         
            -
                    r" 
     | 
| 
      
 137 
     | 
    
         
            +
                    r"Warning: Kernel ABI header at.*?$",
         
     | 
| 
       138 
138 
     | 
    
         
             
                ),
         
     | 
| 
       139 
139 
     | 
    
         
             
                (
         
     | 
| 
       140 
140 
     | 
    
         
             
                    "general-missing",
         
     | 
| 
       141 
141 
     | 
    
         
             
                    r"^Warning: missing.*?$",
         
     | 
| 
       142 
     | 
    
         
            -
                    r" 
     | 
| 
      
 142 
     | 
    
         
            +
                    r"Warning: missing.*?$",
         
     | 
| 
       143 
143 
     | 
    
         
             
                ),
         
     | 
| 
       144 
144 
     | 
    
         
             
                (
         
     | 
| 
       145 
145 
     | 
    
         
             
                    "general-dtc",
         
     | 
| 
       146 
146 
     | 
    
         
             
                    r"^[^\n]*?Warning \([^\n]*?\).*?$",
         
     | 
| 
       147 
     | 
    
         
            -
                    r" 
     | 
| 
      
 147 
     | 
    
         
            +
                    r"Warning.*?$",
         
     | 
| 
       148 
148 
     | 
    
         
             
                ),
         
     | 
| 
       149 
149 
     | 
    
         
             
                (
         
     | 
| 
       150 
150 
     | 
    
         
             
                    "general-register-allocation",
         
     | 
| 
       151 
151 
     | 
    
         
             
                    r"^[^\n]*?error: register allocation failed.*?$",
         
     | 
| 
       152 
     | 
    
         
            -
                    r" 
     | 
| 
      
 152 
     | 
    
         
            +
                    r"error.*?$",
         
     | 
| 
       153 
153 
     | 
    
         
             
                ),
         
     | 
| 
       154 
154 
     | 
    
         
             
            ]
         
     | 
| 
       155 
155 
     | 
    
         | 
| 
         @@ -204,7 +204,13 @@ class Plugin(BasePlugin, BaseLogParser): 
     | 
|
| 
       204 
204 
     | 
    
         
             
                        r"(0x[a-f0-9]+|[<\[][0-9a-f]+?[>\]]|\b\d+\b(?!\s*\())", "", snippet
         
     | 
| 
       205 
205 
     | 
    
         
             
                    )
         
     | 
| 
       206 
206 
     | 
    
         | 
| 
       207 
     | 
    
         
            -
                     
     | 
| 
      
 207 
     | 
    
         
            +
                    # Remove tmp .o files
         
     | 
| 
      
 208 
     | 
    
         
            +
                    without_tmp = re.sub(r"\/tmp\S*?\/\S*?\.o", "", without_numbers)
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
                    # Remove .o files in ()
         
     | 
| 
      
 211 
     | 
    
         
            +
                    without_o_in_brackets = re.sub(r"\(\S*?\.o\)", "", without_tmp)
         
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
                    name = slugify(self.post_process_test_name(without_o_in_brackets))
         
     | 
| 
       208 
214 
     | 
    
         | 
| 
       209 
215 
     | 
    
         
             
                    return name
         
     | 
| 
       210 
216 
     | 
    
         | 
    
        squad/version.py
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            __version__ = '1. 
     | 
| 
      
 1 
     | 
    
         
            +
            __version__ = '1.94'
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Metadata-Version: 2.2
         
     | 
| 
       2 
2 
     | 
    
         
             
            Name: squad
         
     | 
| 
       3 
     | 
    
         
            -
            Version: 1. 
     | 
| 
      
 3 
     | 
    
         
            +
            Version: 1.94
         
     | 
| 
       4 
4 
     | 
    
         
             
            Summary: Software Quality Dashboard
         
     | 
| 
       5 
     | 
    
         
            -
            Home-page: https:// 
     | 
| 
      
 5 
     | 
    
         
            +
            Home-page: https://gitlab.com/Linaro/squad/squad
         
     | 
| 
       6 
6 
     | 
    
         
             
            Author: Antonio Terceiro
         
     | 
| 
       7 
7 
     | 
    
         
             
            Author-email: antonio.terceiro@linaro.org
         
     | 
| 
       8 
8 
     | 
    
         
             
            License: GPLv3+
         
     | 
| 
         @@ -40,6 +40,7 @@ Requires-Dist: setuptools 
     | 
|
| 
       40 
40 
     | 
    
         
             
            Requires-Dist: sqlparse
         
     | 
| 
       41 
41 
     | 
    
         
             
            Requires-Dist: svgwrite
         
     | 
| 
       42 
42 
     | 
    
         
             
            Requires-Dist: whitenoise
         
     | 
| 
      
 43 
     | 
    
         
            +
            Requires-Dist: pytz
         
     | 
| 
       43 
44 
     | 
    
         
             
            Provides-Extra: postgres
         
     | 
| 
       44 
45 
     | 
    
         
             
            Requires-Dist: psycopg2-binary; extra == "postgres"
         
     | 
| 
       45 
46 
     | 
    
         
             
            Dynamic: author
         
     | 
| 
         @@ -10,7 +10,7 @@ squad/manage.py,sha256=Z-LXT67p0R-IzwJ9fLIAacEZmU0VUjqDOSg7j2ZSxJ4,1437 
     | 
|
| 
       10 
10 
     | 
    
         
             
            squad/settings.py,sha256=sLSts3qmUgXmpLmzhOBrTmFcSuBRMugo0hDY0uw4z3A,14792
         
     | 
| 
       11 
11 
     | 
    
         
             
            squad/socialaccount.py,sha256=vySqPwQ3qVVpahuJ-Snln8K--yzRL3bw4Nx27AsB39A,789
         
     | 
| 
       12 
12 
     | 
    
         
             
            squad/urls.py,sha256=JiEfVW8YlzLPE52c2aHzdn5kVVKK4o22w8h5KOA6QhQ,2776
         
     | 
| 
       13 
     | 
    
         
            -
            squad/version.py,sha256= 
     | 
| 
      
 13 
     | 
    
         
            +
            squad/version.py,sha256=mo4yWw83enC5YfVFW1HJGJ-M7Y6KcvytiksUSHnNT24,21
         
     | 
| 
       14 
14 
     | 
    
         
             
            squad/wsgi.py,sha256=SF8T0cQ0OPVyuYjO5YXBIQzvSXQHV0M2BTmd4gP1rPs,387
         
     | 
| 
       15 
15 
     | 
    
         
             
            squad/api/__init__.py,sha256=CJiVakfAlHVN5mIFRVQYZQfuNUhUgWVbsdYTME4tq7U,1349
         
     | 
| 
       16 
16 
     | 
    
         
             
            squad/api/apps.py,sha256=Trk72p-iV1uGn0o5mdJn5HARUoHGbfgO49jwXvpkmdQ,141
         
     | 
| 
         @@ -18,7 +18,7 @@ squad/api/ci.py,sha256=QjGIhSpm8gmIjH4Nd2NAWtJItSVleg3QOLxBU_p9h1E,7082 
     | 
|
| 
       18 
18 
     | 
    
         
             
            squad/api/data.py,sha256=obKDV0-neEvj5lPF9VED2gy_hpfhGtLJABYvSY38ing,2379
         
     | 
| 
       19 
19 
     | 
    
         
             
            squad/api/filters.py,sha256=Zvp8DCJmiNquFWqvfVseEAAMYYPiT95RUjqKdzcqSnw,6917
         
     | 
| 
       20 
20 
     | 
    
         
             
            squad/api/prometheus.py,sha256=MEzSZtYYx6PXreIwZzcVHLp-1vVQ9IKhi9hb8b0vjUk,1839
         
     | 
| 
       21 
     | 
    
         
            -
            squad/api/rest.py,sha256= 
     | 
| 
      
 21 
     | 
    
         
            +
            squad/api/rest.py,sha256=AYYAIZxQClT5VJYECCYvPhbI8n2pj3KCunFtkusDaZc,77776
         
     | 
| 
       22 
22 
     | 
    
         
             
            squad/api/urls.py,sha256=c-o27_RP0ynOtxuyRKUl274fFMWWrzoii31Mr2saxSQ,1414
         
     | 
| 
       23 
23 
     | 
    
         
             
            squad/api/utils.py,sha256=Sa8QFId3_oSqD2UOoY3Kuh54LLDLPNMq2sub5ktd6Fs,1160
         
     | 
| 
       24 
24 
     | 
    
         
             
            squad/api/views.py,sha256=WH4c10e7iRmuL5tWDxG4zEFHzvF5hxDpEVvybfvbc_E,3880
         
     | 
| 
         @@ -27,7 +27,7 @@ squad/ci/admin.py,sha256=7yB-6F0cvt0NVvzGOTlZCyGPV_YHarmbKJZTTzataT4,2255 
     | 
|
| 
       27 
27 
     | 
    
         
             
            squad/ci/apps.py,sha256=6OVnzTdJkxdqEJnKWYE9dZgUcc29_T1LrDw41cK4EQk,139
         
     | 
| 
       28 
28 
     | 
    
         
             
            squad/ci/exceptions.py,sha256=a1sccygniTYDSQi7FRn_6doapddFFiMf55AwGUh5Y80,227
         
     | 
| 
       29 
29 
     | 
    
         
             
            squad/ci/models.py,sha256=_nXVB7BKAzCxSq1WGq1cXkBkhyX9CyRZcaOKQ7o4C1c,15951
         
     | 
| 
       30 
     | 
    
         
            -
            squad/ci/tasks.py,sha256= 
     | 
| 
      
 30 
     | 
    
         
            +
            squad/ci/tasks.py,sha256=mpO_wFDA1ubKO1kVgNOoXcoTLP5HJqXaVCigHrT71Sc,4151
         
     | 
| 
       31 
31 
     | 
    
         
             
            squad/ci/utils.py,sha256=38zHpw8xkZDSFlkG-2BwSK6AkcddK9OkN9LXuQ3SHR0,97
         
     | 
| 
       32 
32 
     | 
    
         
             
            squad/ci/backend/__init__.py,sha256=yhpotXT9F4IdAOXvGQ3-17eOHAFwoaqf9SnMX17ab30,534
         
     | 
| 
       33 
33 
     | 
    
         
             
            squad/ci/backend/fake.py,sha256=MTsxGZuihJOd39X8ysJhiYp4A0R46lyhdkjoTgFm6a8,2435
         
     | 
| 
         @@ -310,11 +310,11 @@ squad/frontend/tests.py,sha256=PidrjaToK_Cks0s9Mc4i3Vh4UXOWoXTZlpnxQ2wWjHY,8740 
     | 
|
| 
       310 
310 
     | 
    
         
             
            squad/frontend/urls.py,sha256=-rxbsUlMyxldzoVKiVAOMAREqU8SOipy4CqBTlULuMQ,5055
         
     | 
| 
       311 
311 
     | 
    
         
             
            squad/frontend/user_settings.py,sha256=U_i59iuylg98uH98K4ezPa2NY56idslBhn7MS6FguHQ,4976
         
     | 
| 
       312 
312 
     | 
    
         
             
            squad/frontend/utils.py,sha256=DeH58CJUI1dovpQrj3a-DcxNzM0cxsnBDOF0mrC4Qws,1364
         
     | 
| 
       313 
     | 
    
         
            -
            squad/frontend/views.py,sha256= 
     | 
| 
       314 
     | 
    
         
            -
            squad/frontend/locale/django.pot,sha256= 
     | 
| 
       315 
     | 
    
         
            -
            squad/frontend/locale/pl/LC_MESSAGES/django.po,sha256= 
     | 
| 
       316 
     | 
    
         
            -
            squad/frontend/locale/pt/LC_MESSAGES/django.po,sha256= 
     | 
| 
       317 
     | 
    
         
            -
            squad/frontend/locale/pt_BR/LC_MESSAGES/django.po,sha256= 
     | 
| 
      
 313 
     | 
    
         
            +
            squad/frontend/views.py,sha256=9T9FPhFgzBuXaVu6D4oSPWZHeVU4OEr1kzj8asgya1U,27083
         
     | 
| 
      
 314 
     | 
    
         
            +
            squad/frontend/locale/django.pot,sha256=sPoU8HeTHDmzxvHFRDDXQiP-VH_jBC_p1-wXQMCMUDw,30192
         
     | 
| 
      
 315 
     | 
    
         
            +
            squad/frontend/locale/pl/LC_MESSAGES/django.po,sha256=vibPhqvDxcDhdtOttDNTIhQ6cctEm2zCbA1xAUNsbrw,36325
         
     | 
| 
      
 316 
     | 
    
         
            +
            squad/frontend/locale/pt/LC_MESSAGES/django.po,sha256=Fv_Amiw_2duq7QKYm5zQ17DudV1fuy2rZtf7VNKinek,36403
         
     | 
| 
      
 317 
     | 
    
         
            +
            squad/frontend/locale/pt_BR/LC_MESSAGES/django.po,sha256=s9sL3_sPpPLaZ3NhOWEayUJJMmJ4tUqFz1GNWwQmF50,36550
         
     | 
| 
       318 
318 
     | 
    
         
             
            squad/frontend/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       319 
319 
     | 
    
         
             
            squad/frontend/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       320 
320 
     | 
    
         
             
            squad/frontend/management/commands/get_token.py,sha256=2h3mohRfjJ8ja6GLHaMg6DEUg8MpMss_OS3IuT3cNHg,1054
         
     | 
| 
         @@ -343,7 +343,7 @@ squad/frontend/static/squad/controllers/build_release.js,sha256=sZrjZGLSRMNjA1S1 
     | 
|
| 
       343 
343 
     | 
    
         
             
            squad/frontend/static/squad/controllers/cancel.js,sha256=o9VSiHTJ0I_Hu5vyH_JGYpsez6NQqfqWQaMs6TcpW1w,1734
         
     | 
| 
       344 
344 
     | 
    
         
             
            squad/frontend/static/squad/controllers/charts.js,sha256=N06dHpKEDOqjkAzCI68LzcIJaZRDqqDYigqXSKRQIpw,35837
         
     | 
| 
       345 
345 
     | 
    
         
             
            squad/frontend/static/squad/controllers/compare.js,sha256=SCpwDt9A6OL2CvQfDmNl6f3d34vskJm9jpJInw8teYQ,14782
         
     | 
| 
       346 
     | 
    
         
            -
            squad/frontend/static/squad/controllers/fetch.js,sha256= 
     | 
| 
      
 346 
     | 
    
         
            +
            squad/frontend/static/squad/controllers/fetch.js,sha256=onWMBT3aBZMttLoGcVv8G4lS11VKTtSEfHhLETnKfow,929
         
     | 
| 
       347 
347 
     | 
    
         
             
            squad/frontend/static/squad/controllers/filter.js,sha256=YpWdVFxjFYk-G-RhzbkyliQTu37bB1jawCcCah4RF3o,1710
         
     | 
| 
       348 
348 
     | 
    
         
             
            squad/frontend/static/squad/controllers/metricThreshold.js,sha256=uxF3n9vt83eiFmxkp6ITjafi2X2HHi-47ubnjncEkyA,4758
         
     | 
| 
       349 
349 
     | 
    
         
             
            squad/frontend/static/squad/controllers/project_compare.js,sha256=BU3ZJRZffenSe1YwtSuBeMitfwe1m-JHfrutUeE5RkU,1205
         
     | 
| 
         @@ -351,7 +351,7 @@ squad/frontend/static/squad/controllers/resubmit.js,sha256=fWTuQb_6fpoAvzgbkUJWi 
     | 
|
| 
       351 
351 
     | 
    
         
             
            squad/frontend/static/squad/controllers/testjobs_progress.js,sha256=UtCRcynMins7o7QmWmjTqrTa8lxEGqVZ9giPSXOaFPk,7534
         
     | 
| 
       352 
352 
     | 
    
         
             
            squad/frontend/templates/401.jinja2,sha256=lw92ogswoDB06CrSIBo5ARaZbTuNzE8Tc7DgrBKymu0,356
         
     | 
| 
       353 
353 
     | 
    
         
             
            squad/frontend/templates/404.jinja2,sha256=KJaxd1ErxVFeDIZ_ytvbAyMyGsiawQZL0yzQy5MG5WM,176
         
     | 
| 
       354 
     | 
    
         
            -
            squad/frontend/templates/django/rest_framework/api.html,sha256= 
     | 
| 
      
 354 
     | 
    
         
            +
            squad/frontend/templates/django/rest_framework/api.html,sha256=4MBPli6Jx5uHfPklexoXjTUG_4lsldo9oH7jPMbprBA,2751
         
     | 
| 
       355 
355 
     | 
    
         
             
            squad/frontend/templates/django/squad/_user_menu.html,sha256=Fnj6N33ahSQzBNf2qMdQwFBhpTEVwjjCj5McBSE_Rro,1185
         
     | 
| 
       356 
356 
     | 
    
         
             
            squad/frontend/templates/squad/_builds_table.jinja2,sha256=M3v_gFnM6SsHeBvfpvLCTOWaWmzDrP4wjDzaJ-P_ATA,4314
         
     | 
| 
       357 
357 
     | 
    
         
             
            squad/frontend/templates/squad/_env_suite_data.jinja2,sha256=m50atlCCEN7ouH5soRF9ZavOklXvx_873Kqs4lYwVdo,1598
         
     | 
| 
         @@ -371,7 +371,7 @@ squad/frontend/templates/squad/_test_run_metric.jinja2,sha256=lGJaVD5kTBYGpPPBHx 
     | 
|
| 
       371 
371 
     | 
    
         
             
            squad/frontend/templates/squad/_test_run_test.jinja2,sha256=S3ZgmbJGsN4I7dQimvSrhoyWsIJK9K5HVOjGlFN4uNg,3339
         
     | 
| 
       372 
372 
     | 
    
         
             
            squad/frontend/templates/squad/_unfinished_build.jinja2,sha256=U1dWITSX2LLxKquBee0jU8d76ssh6dFc4sxxFX921Cw,164
         
     | 
| 
       373 
373 
     | 
    
         
             
            squad/frontend/templates/squad/_user_menu.jinja2,sha256=7pIdeUEInR9FejvxIqtcxbrIpbLt460uokcVspNRogI,1256
         
     | 
| 
       374 
     | 
    
         
            -
            squad/frontend/templates/squad/base.jinja2,sha256= 
     | 
| 
      
 374 
     | 
    
         
            +
            squad/frontend/templates/squad/base.jinja2,sha256=1ITa2WiXK85hP19tB3nyUWIovsj-DAG2AOYNbqMcfbA,4349
         
     | 
| 
       375 
375 
     | 
    
         
             
            squad/frontend/templates/squad/build-nav.jinja2,sha256=w4j2eevYQSkNe1YEIdo6nKHbHnLub_1iRWrTYNzwZi0,8800
         
     | 
| 
       376 
376 
     | 
    
         
             
            squad/frontend/templates/squad/build.jinja2,sha256=kHAkO6-BU_7qMQ_C8-7snGk-D0RC9enSx0RIyzQ-wpc,6329
         
     | 
| 
       377 
377 
     | 
    
         
             
            squad/frontend/templates/squad/build_callbacks.jinja2,sha256=eNN455gEodq3EmAQ4LplmlXcKCCmSoKA88UScubqjX8,2493
         
     | 
| 
         @@ -428,7 +428,7 @@ squad/plugins/example.py,sha256=BKpwd315lHRIuNXJPteibpwfnI6C5eXYHYdFYBtVmsI,89 
     | 
|
| 
       428 
428 
     | 
    
         
             
            squad/plugins/gerrit.py,sha256=CqO2KnFQzu9utr_TQ-sGr1wg3ln0B-bS2-c0_i8T5-c,7009
         
     | 
| 
       429 
429 
     | 
    
         
             
            squad/plugins/github.py,sha256=pdtLZw_7xNuzkaFvY_zWi0f2rsMlalXjKm7sz0eADz4,2429
         
     | 
| 
       430 
430 
     | 
    
         
             
            squad/plugins/linux_log_parser.py,sha256=HQVreyZLBmLuv-K-MjlN43sQQSkcls4hkUsjJ9_5WfM,3472
         
     | 
| 
       431 
     | 
    
         
            -
            squad/plugins/linux_log_parser_build.py,sha256= 
     | 
| 
      
 431 
     | 
    
         
            +
            squad/plugins/linux_log_parser_build.py,sha256=Zc-wl20oBqkZbFyAHJzjdCm75t7dt112djroCvSWXxw,10593
         
     | 
| 
       432 
432 
     | 
    
         
             
            squad/plugins/lib/__init__.py,sha256=jzazbAvp2_ibblAs0cKZrmo9aR2EL3hKLyRDE008r2I,40
         
     | 
| 
       433 
433 
     | 
    
         
             
            squad/plugins/lib/base_log_parser.py,sha256=4qXAu6r9Bbsl9Ztn4r1n-uWesdOiHESXdzic2_voc8c,9551
         
     | 
| 
       434 
434 
     | 
    
         
             
            squad/run/__init__.py,sha256=ssE8GPAGFiK6V0WpZYowav6Zqsd63dfDMMYasNa1sQg,1410
         
     | 
| 
         @@ -436,9 +436,9 @@ squad/run/__main__.py,sha256=DOl8JOi4Yg7DdtwnUeGqtYBJ6P2k-D2psAEuYOjWr8w,66 
     | 
|
| 
       436 
436 
     | 
    
         
             
            squad/run/listener.py,sha256=jBeOQhPGb4EdIREB1QsCzYuumsfJ-TqJPd3nR-0m59g,200
         
     | 
| 
       437 
437 
     | 
    
         
             
            squad/run/scheduler.py,sha256=CDJG3q5C0GuQuxwlMOfWTSSJpDdwbR6rzpbJfuA0xuw,277
         
     | 
| 
       438 
438 
     | 
    
         
             
            squad/run/worker.py,sha256=jtML0h5qKDuSbpJ6_rpWP4MT_rsGA7a24AhwGxBquzk,594
         
     | 
| 
       439 
     | 
    
         
            -
            squad-1. 
     | 
| 
       440 
     | 
    
         
            -
            squad-1. 
     | 
| 
       441 
     | 
    
         
            -
            squad-1. 
     | 
| 
       442 
     | 
    
         
            -
            squad-1. 
     | 
| 
       443 
     | 
    
         
            -
            squad-1. 
     | 
| 
       444 
     | 
    
         
            -
            squad-1. 
     | 
| 
      
 439 
     | 
    
         
            +
            squad-1.94.dist-info/COPYING,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
         
     | 
| 
      
 440 
     | 
    
         
            +
            squad-1.94.dist-info/METADATA,sha256=ctZajy7aHid6EYEfJ-pjSdes8RsCbSvUx9RRUFiBPaY,1514
         
     | 
| 
      
 441 
     | 
    
         
            +
            squad-1.94.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
         
     | 
| 
      
 442 
     | 
    
         
            +
            squad-1.94.dist-info/entry_points.txt,sha256=apCDQydHZtvqV334ql6NhTJUAJeZRdtAm0TVcbbAi5Q,194
         
     | 
| 
      
 443 
     | 
    
         
            +
            squad-1.94.dist-info/top_level.txt,sha256=_x9uqE1XppiiytmVTl_qNgpnXus6Gsef69HqfliE7WI,6
         
     | 
| 
      
 444 
     | 
    
         
            +
            squad-1.94.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |