1.0.55 • Published 4 years ago

galaxy-parser v1.0.55

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

Galaxy Parser

Parser tool to read and parse the code metric files that your build already generates and pushes them into Galaxy

NOTE: Galaxy does not do any code analysis or anything, it will just parse files of code coverage, eslint, etc that your project already produces.

Prerequisites

The bare minimum to report into galaxy is to have code coverage reporting in one of the supported formats.

Supported Code Coverage Formats

  • LCOV (JavaScript/? projects)
  • JACOCO XML (Java projects)

Installation

npm install --save-dev galaxy-parser

Getting your project reporting into Galaxy

1) Create a package.json / Modify the existing package.json

NOTE: The package.json name field is used as the key. Keep it all lower-case with no spaces. I.E my-project or myProject.

2) Add an entry to the package.json for galaxy

    "galaxy": {
        "display": "My Project", // display name for galaxy (defaults to package.json name)
        "type": "javascript", // type of the project that we are reporting on (javascript|java|php)
        "goal": 80, // goal set for the unit test coverage number (defaults to 80 if not provided),
        "threshold": 0.15 // threshold to not report changes to slack (defaults to 0 if not provided),
        "precision": 2, // precision of decimal places to display for coverage differences (defaults to 2)
        "locations": {
          "sloc": "/coverage/sloc.json", // location of where the sloc.json file is for line of code parsing
          "lcov": "/coverage/lcov.info", // location of where the code coverage is saved
          "jacoco": "/coverage/jacoco.xml", // location of where jacoco saves the xml file
          "jacoco-multi": [ // location of multiple small jacoco files to sum up
            "/coverage/jacoco1.xml",
            "/coverage/jacoco2.xml",
            "/coverage/jacoco3.xml"
          ]
        }
    }

NOTE: Projects will only have one (1) code coverage metric, either lcov or jacoco at this point in time!

3) Add some scripts to your package.json to manage run the report

This will be different based on the type of project you are working on, this is an example for a JavaScript project:

"loc": "sloc src/ --format json > ./coverage/sloc.json",
"pregalaxy": "npm run loc",
"galaxy": "galaxy analyze"

4) Add the NPM run scripts into your build process

This will vary on what CI tool that you are using, here are some examples for Jenkins and Travis

Jenkins

// execute shell script (after everything else is done / test coverage ran)
npm run galaxy -- FIREBASE_URL SLACK_WEB_HOOK SLACK_CHANNEL

Travis

after_success:
  - test $TRAVIS_BRANCH = "master" && npm run galaxy $FIREBASE_URL $SLACK_WEB_HOOK $SLACK_CHANNEL

5) Add private environment variables for FIREBASE_URL, SLACK_WEB_HOOK and SLACK_CHANNEL

Example Integrations

NOTE: On those, the galaxy config is missing the display property. This is defaulted to the package.json name otherwise if not set.

1.0.55

4 years ago

1.0.54

4 years ago

1.0.53

5 years ago

1.0.52

5 years ago

1.0.51

6 years ago

1.0.50

6 years ago

1.0.49

6 years ago

1.0.48

6 years ago

1.0.47

6 years ago

1.0.46

6 years ago

1.0.45

7 years ago

1.0.44

7 years ago

1.0.43

7 years ago

1.0.42

7 years ago

1.0.41

7 years ago

1.0.40

7 years ago

1.0.39

7 years ago

1.0.38

7 years ago

1.0.37

7 years ago

1.0.36

7 years ago

1.0.35

7 years ago

1.0.34

7 years ago

1.0.33

7 years ago

1.0.32

7 years ago

1.0.31

7 years ago

1.0.30

7 years ago

1.0.29

7 years ago

1.0.28

7 years ago

1.0.27

7 years ago

1.0.26

7 years ago

1.0.25

7 years ago

1.0.24

7 years ago

1.0.23

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago