An error occurred fetching the project authors.
  1. 04 May, 2020 1 commit
  2. 29 Apr, 2020 1 commit
  3. 27 Apr, 2020 1 commit
  4. 24 Apr, 2020 1 commit
  5. 08 Apr, 2020 1 commit
  6. 28 Mar, 2020 1 commit
  7. 23 Mar, 2020 1 commit
  8. 19 Mar, 2020 2 commits
  9. 04 Mar, 2020 2 commits
  10. 03 Mar, 2020 1 commit
  11. 17 Feb, 2020 1 commit
  12. 05 Feb, 2020 1 commit
  13. 02 Feb, 2020 1 commit
    • Jérome Perrin's avatar
      slapos.cookbook/testing: fix missing version pin for mock · 826042a9
      Jérome Perrin authored
      Because we run egg tests with setup.py test, which installs missing
      eggs, if an egg was not installed by buildout, then it installed before
      running test. This was the case for mock, which is now python3 only (
      https://pypi.org/project/mock/4.0.0b1/ ) and we started to see test
      failures.
      
      To solve this issue, refactor the setup definition to use
      extra_requires, which seems to work fine in buildout now. Keep
      test_requires because it's the what `python setup.py test` uses.
      
      Clean buildout profiles to install slapos.cookbook[test] for test
      instead of duplicating the content of test_requires.
      
      /reviewed-on nexedi/slapos!690
      826042a9
  14. 29 Jan, 2020 1 commit
  15. 03 Oct, 2019 1 commit
  16. 24 Sep, 2019 1 commit
  17. 12 Sep, 2019 1 commit
  18. 30 Aug, 2019 1 commit
  19. 15 Aug, 2019 1 commit
  20. 13 Aug, 2019 2 commits
  21. 21 Feb, 2019 1 commit
  22. 28 Dec, 2018 2 commits
  23. 21 Sep, 2018 1 commit
  24. 06 Sep, 2018 3 commits
  25. 05 Sep, 2018 1 commit
  26. 31 Aug, 2018 2 commits
  27. 29 Jun, 2018 1 commit
    • Vincent Pelletier's avatar
      Stop using erp5 test recipe · 1436c63b
      Vincent Pelletier authored
      The goal is to drop slapos.cookbook:erp5.test
      
      No need for a recipe to do a bit of url parsing and generating 2 wrappers.
      Also, drop unused & empty "host-common" section.
      
      - stack/erp5: Add path to all binary links in PATH
      - stack/erp5: Add single quotation marks to not break parameters in many lines
      - stack/erp5: Fix path to avoid one section to overwrite the file from another section
      - stack/erp5: pass cloudooo host instead of the IP address. The IP address and cloudooo hostname are well in $SLAPPART/etc/hosts
      - stack/erp5: Use use-ipv6 instance parameter to control where caucased listens when locally deployed.
        Drop incomplete 6tunnel usage on balancer toward zopes.
      
      Tests are somehow happy test_result_module/20180626-62AD32BB test_result_module/20180626-70AC16FA
      
      If no objections I would like to merge tomorrow but feel free to press merge for me :)
      
      The goal is rebase nexedi/slapos!318 to fix the conflict and merge after tomorrow.
      
      /cc @rafael @vpelletier 
      
      /reviewed-on nexedi/slapos!347
      1436c63b
  28. 22 Jun, 2018 1 commit
  29. 10 Apr, 2018 2 commits
    • Alain Takoudjou's avatar
      Release slapos.cookbook 1.0.62 · 590b8521
      Alain Takoudjou authored
      590b8521
    • Alain Takoudjou's avatar
      slapos.cookbook: add new recipe for python promises plugin script generation with eggs · 6f7b3a31
      Alain Takoudjou authored
      This recipe will be used to generate promise in etc/plugin dir. It solve the problem of promise eggs
      dependencies and allow to set custom parameter to use in promise.
      
      The generated script will looks like:
      
          import sys
          sys.path[0:0] = [
            ...
          ]
      
          extra_config_dict = {
            'KEY': 'VALUE'
          }
      
          CONTENT
      
      CONTENT is a python code, the expected content looks like:
      
          from namespace.module import RunPromise
      
      then the promise section in buildout will be something like:
      
          [my-promise]
          recipe = slapos.cookbook:promise.plugin
          eggs =
            NAME
            ...
          output = OUTPUT
          content =
            from namespace.module import RunPromise
      
          config-KEY = VALUE
      6f7b3a31
  30. 04 Apr, 2018 1 commit
  31. 16 Mar, 2018 2 commits