Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format files #7

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Format files #7

wants to merge 4 commits into from

Commits on Oct 25, 2019

  1. Format files

    - Add .mix.exs
    - `$ mix format`
    niku committed Oct 25, 2019
    Configuration menu
    Copy the full SHA
    0bb57c1 View commit details
    Browse the repository at this point in the history
  2. Fix tests on Elixir 1.9.2

    niku committed Oct 25, 2019
    Configuration menu
    Copy the full SHA
    55f487f View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2019

  1. Make pass tests on all supported Elixir versions

    ```
    ❯ elixir --version
    Erlang/OTP 22 [erts-10.5.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe]
    
    Elixir 1.9.2 (compiled with Erlang/OTP 22)
    
    ~/src/erl2ex master* ⇡
    ❯ mix test
    Excluding tags: [:e2e, :dummy]
    
    ........................................*......................................................................********..........................
    
    Finished in 1.2 seconds
    153 tests, 0 failures, 8 excluded, 9 skipped
    
    Randomized with seed 1895
    
    ❯ asdf shell elixir 1.8.2
    
    ❯ elixir --version
    Erlang/OTP 22 [erts-10.5.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe]
    
    Elixir 1.8.2 (compiled with Erlang/OTP 20)
    
    ❯ mix test
    Compiling 22 files (.ex)
    Generated erl2ex app
    Excluding tags: [:e2e, :dummy]
    
    ........................................*......................................................................*............*******..............
    
    Finished in 1.2 seconds
    153 tests, 0 failures, 8 excluded, 9 skipped
    
    Randomized with seed 155934
    
    ❯ asdf shell elixir 1.7.4
    
    ❯ elixir --version
    Erlang/OTP 22 [erts-10.5.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe]
    
    Elixir 1.7.4 (compiled with Erlang/OTP 19)
    
    ❯ mix test
    Compiling 22 files (.ex)
    Generated erl2ex app
    Excluding tags: [:e2e, :dummy]
    
    ..........................................*....................................................................*******.......*...................
    
    Finished in 1.1 seconds
    153 tests, 0 failures, 8 excluded, 9 skipped
    
    Randomized with seed 39178
    
    ❯ asdf shell elixir 1.6.6
    
    ❯ elixir --version
    Erlang/OTP 22 [erts-10.5.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe]
    
    Elixir 1.6.6 (compiled with OTP 19)
    
    ❯ mix test
    Compiling 22 files (.ex)
    Generated erl2ex app
    Excluding tags: [:e2e, :dummy]
    
    ........................................................................................................................................
    
    Finished in 1.0 seconds
    153 tests, 0 failures, 17 skipped
    
    Randomized with seed 991019
    
    ❯ asdf shell elixir 1.5.3
    
    ❯ asdf shell erlang 18.3.4.9
    
    ❯ rm -rf _build
    
    ❯ elixir --version
    Erlang/OTP 18 [erts-7.3.1.4] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false]
    
    Elixir 1.5.3
    
    ❯ mix test
    Compiling 22 files (.ex)
    Generated erl2ex app
    Excluding tags: [:e2e, :dummy]
    
    ........................................................................................................................................
    
    Finished in 1.0 seconds
    153 tests, 0 failures, 17 skipped
    
    Randomized with seed 543499
    
    ❯ asdf shell elixir 1.4.5
    
    ❯ elixir --version
    Erlang/OTP 18 [erts-7.3.1.4] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false]
    
    Elixir 1.4.5
    
    ❯ mix test
    Compiling 22 files (.ex)
    Generated erl2ex app
    Excluding tags: [:e2e, :dummy]
    
    ........................................................................................................................................
    
    Finished in 1.2 seconds
    153 tests, 0 failures, 17 skipped
    
    Randomized with seed 869058
    ```
    niku committed Oct 26, 2019
    Configuration menu
    Copy the full SHA
    92b50d5 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2019

  1. Merge pull request #1 from niku/pass-test-on-supported-elixir-versions

    Make pass test on all supported elixir versions
    niku authored Nov 12, 2019
    Configuration menu
    Copy the full SHA
    57aef4d View commit details
    Browse the repository at this point in the history